Python/python numbers
来自菜鸟教程
<languages />
Python数字
Python数字
Python中有三种数值类型:
int
float
complex
在为数字类型的变量赋值时会创建它们:
例
x = 1 # int y = 2.8 # float z = 1j # complex
要验证Python中任何对象的类型,请使用
type()
功能:
例
print(type(x)) print(type(y)) print(type(z))
Int
Int或整数是无限长度的正整数或负整数(无小数)。
例
整数:
x = 1 y = 35656222554887711 z = -3255522 print(type(x)) print(type(y)) print(type(z))
浮动
浮点数或“浮点数”是一个正数或负数,包含一个或多个小数。
例
湘江边:
x = 1.10 y = 1.0 z = -35.59 print(type(x)) print(type(y)) print(type(z))
浮点数也可以是带有“ e”的科学数字,以表示10的幂。
例
湘江边:
x = 35e3 y = 12E4 z = -87.7e100 print(type(x)) print(type(y)) print(type(z))
复杂
复数以“ j”表示为虚部:
例
复杂:
x = 3+5j y = 5j z = -5j print(type(x)) print(type(y)) print(type(z))
类型转换
您可以使用
int()
,
float()
,和
complex()
方法:
例
从一种类型转换为另一种类型:
x = 1 # int y = 2.8 # float z = 1j # complex #convert from int to float: a = float(x) #convert from float to int: b = int(y) #convert from int to complex: c = complex(x) print(a) print(b) print(c) print(type(a)) print(type(b)) print(type(c))
注意: 您不能将复数转换为另一种数字类型。
随机数
Python没有
random()
函数生成一个随机数,但是Python有一个内置模块,称为
random
可用于生成随机数:
例
导入随机模块,并显示1到9之间的随机数:
import random print(random.randrange(1, 10))
在我们的 随机模块参考
您将了解有关随机模块的更多信息。