时间:2021-05-22
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 是数字的情况:
int(3.14) # 3int(2e2) # 200int(100, 2) # 出错,base 被赋值后函数只接收字符串2. x 是字符串的情况:
int('23', 16) # 35int('Pythontab', 8) # 出错,Pythontab不是个8进制数3. base 可取值范围是 2~36,囊括了所有的英文字母(不区分大小写),十六进制中F表示15,那么G将在二十进制中表示16,依此类推....Z在三十六进制中表示35
int('FZ', 16) # 出错,FZ不能用十六进制表示int('FZ', 36) # 5754. 字符串 0x 可以出现在十六进制中,视作十六进制的符号,同理 0b 可以出现在二进制中,除此之外视作数字 0 和字母 x
int('0x10', 16) # 16,0x是十六进制的符号int('0x10', 17) # 出错,'0x10'中的 x 被视作英文字母 xint('0x10', 36) # 42804,36进制包含字母 x总结
以上所述是小编给大家介绍python 中的int()函数,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
使用Python内置函数:bin()、oct()、int()、hex()可实现进制转换。先看Python官方文档中对这几个内置函数的描述:bin(x)Conve
使用Python内置函数:bin()、oct()、int()、hex()可实现进制转换。先看Python官方文档中对这几个内置函数的描述:bin(x)Conve
int()是Python的一个内部函数Python系统帮助里面是这么说的>>>help(int)Helponclassintinmodule__builtin_
在C++中,函数的形参可以是指向函数的指针,函数也可以返回函数的指针。例如:int(*ff(int))(int*,int);表示:ff(int)是一个函数,带有
INT函数是取整函数,该怎么取整呢?下面我们就来看看wps中INT函数的使用方法。软件名称:wps2015更新了什么wps2015官方下载免费完整版软件大小:更