Python 类型转换
类型转换
您可以使用 int()
、float()
和 complex()
方法将一种类型转换为另一种类型。
示例
将一种类型转换为另一种类型
x = 1 # int
y = 2.8 # float
z = 1j # complex
# 将 int 转换为 float
a = float(x)
# 将 float 转换为 int
b = int(y)
# 将 int 转换为 complex
c = complex(x)
print(a)
print(b)
print(c)
print(type(a))
print(type(b))
print(type(c))
自己尝试 »
注意:您无法将复数转换为其他数字类型。