Python/gloss python numbers

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python数字

Python数字

Python中有三种数值类型:

  • int
  • 浮动
  • 复杂

在为数字类型的变量赋值时会创建它们:

x = 1    
  # int
y = 2.8  # float
z = 1j   # complex

要验证Python中任何对象的类型,请使用 type() 功能:

  print(type(x))
print(type(y))
print(type(z))