Python 数字
Python 数字
Python 中有三种数字类型
- int
- float
- complex
当你为它们赋值时,就会创建数字类型的变量
示例
x = 1 # int
y = 2.8 # float
z = 1j # complex
要验证 Python 中任何对象的类型,请使用 type()
函数
Python 中有三种数字类型
当你为它们赋值时,就会创建数字类型的变量
x = 1 # int
y = 2.8 # float
z = 1j # complex
要验证 Python 中任何对象的类型,请使用 type()
函数
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]