Python 数字
Python 中有三种数字类型:
int
float
complex
为变量赋值时,将创建数值类型的变量:
实例
x = 10 # int
y = 6.3 # float
z = 2j # complex
如需验证 Python 中任何对象的类型,请使用 type() 函数:
实例
print(type(x))
print(type(y))
print(type(z))
Int
Int 或整数是完整的数字,正数或负数,没有小数,长度不限。
实例
整数:
x = 10
y = 37216654545182186317
z = -465167846
print(type(x))
print(type(y))
print(type(z))
Float
浮动或“浮点数”是包含小数的正