欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python标准数据类型② Numeric Types (int,float,complex)

程序员文章站 2022-07-15 12:47:03
...

python标准数据类型② Numbers(数字)

(一)数字相关有下面三种基础数据类型

python标准数据类型② Numeric Types (int,float,complex)

类型 含义 数据特征 举例
int 带符号整型 纯数字或者符号构成 -111,+111
float 带符号的浮点数 带小数点或者指数符号e / E 1e-3,-1.3,+1E6
complex 复数 整数或者浮点数后有J / j 1+2.2J
>>> #整数		
>>> type(111111111111111111)
<class 'int'>
>>> type(-111111111111111111)
<class 'int'>
>>> #浮点数
>>> type(-111111111111111111.1)
<class 'float'>
>>> type(1E6)
<class 'float'>
>>> a=1E6
>>> a
1000000.0
>>> #复数
>>> type(1+2J)
<class 'complex'>

可以向上面一样直接用,系统会自动判定是那种类型
也可以使用int(),float(),complex()生成对应的数据类型
例如:

>>> int(11.232)
11
 >>> float(10)
10.0