x =10# int
y =6.3# float
z =1j# complex# 把整数转换为浮点数
a =float(x)# 把浮点数转换为整数
b =int(y)# 把整数转换为复数:
c =complex(x)print(a)print(b)print(c)print(type(a))print(type(b))print(type(c))
注释: 您无法将复数转换为其他数字类型。
随机数
Python 没有 random() 函数来创建随机数,但 Python 有一个名为 random 的内置模块,可用于生成随机数: