python 中的int()函数怎么用


本文摘自php中文网,作者不言,侵删。

int() 函数用于将一个字符串会数字转换为整型。接下来通过本文给大家介绍python 中的int()函数的相关知识,感兴趣的朋友一起看看吧

int(x, [base])

功能:

函数的作用是将一个数字或base类型的字符串转换成整数。

函数原型:

int(x=0)
int(x, base=10),base缺省值为10,也就是说不指定base的值时,函数将x按十进制处理。

适用Python版本:

Python2.x
Python3.x

注意:

1. x 可以是数字或字符串,但是base被赋值后 x 只能是字符串
2. x 作为字符串时必须是 base 类型,也就是说 x 变成数字时必须能用 base 进制表示

Python英文文档解释:

class int(x=0)
class int(x, base=10)
Return an integer object constructed from a number or string x, or return 0 if no arguments are given. If x is a number, return x.__int__(). For floating point numbers, this truncates towards zero.
If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance representing an integer literal in radix base. Optionally, the literal can be preceded by + or - (with no space in between) and surrounded by whitespace. A base-n literal consists of the digits 0 to n-1, with a to z (or A to Z) having values 10 to 35. The default base is 10. The allowed values are 0 and 2–36. Base-2, -8, and -16 literals can be optionally prefixed with 0b/0B, 0o/0O, or 0x/0X, as with integer literals in code. Base 0 means to interpret exactly as a code literal, so that the actual base is 2, 8, 10, or 16, and so that int('010', 0) is not legal, while int('010') is, as well as int('010', 8).
The integer type is described in Numeric Types — int, float, complex.
Changed in version 3.4: If base is not an instance of int and the base object has a base.__index__ method, that method is called to obtain an integer for the base. Previous versions used base.__int__ instead of base.__index__.
Changed in version 3.6: Grouping digits with underscores as in code literals is allowed.

代码实例:

1. x 是数字的情况:

1

2

3

int(3.14)      # 3

int(2e2)       # 200

int(100, 2)     # 出错,base 被赋值后函数只接收字符串

2. x 是字符串的情况:

1

2

int('23', 16)   # 35

int('Pythontab', 8)   # 出错,Pythontab不是个8进制数

3. base 可取值范围是 2~36,囊括了所有的英文字母(不区分大小写),十六进制中F表示15,那么G将在二十进制中表示16,依此类推....Z在三十六进制中表示35

1

2

int('FZ', 16)   # 出错,FZ不能用十六进制表示

int('FZ', 36)   # 575

4. 字符串 0x 可以出现在十六进制中,视作十六进制的符号,同理 0b 可以出现在二进制中,除此之外视作数字 0 和字母 x

1

2

3

int('0x10', 16) # 16,0x是十六进制的符号

int('0x10', 17) # 出错,'0x10'中的 x 被视作英文字母 x

int('0x10', 36) # 42804,36进制包含字母 x

相关推荐:

详解python函数之map,Filter,Reduce

python函数之bin()函数详解

以上就是python 中的int()函数怎么用的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

巧用Python实现图片转换成素描和漫画格式

Python的字典进行排序

Python怎么新建文件夹

Python运行其他程序的方法实例详解

最有用的Python经典书籍推荐

Python怎么打包apk

怎么用Python绘制圆

初学者编写Python用什么软件

Python针对给定列表中元素进行翻转操作的方法分析

Python换行符怎么用?

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...