Python/gloss python int

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

<languages />

Python Int

Int

Int或整数是无限长度的正整数或负整数(无小数)。

整数:

x = 1
y = 35656222554887711
z = 
  -3255522

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