Python中的整型用int表示。
python2中:

  • 在32位机器上,整数的位数为32位,取值范围为-2^31~2^31-1,即-2147483648~2147483647
  • 在64位系统上,整数的位数为64位,取值范围为-2^63~2^63-1,即-9223372036854775808~9223372036854775807
  • 超出长度之后就会变为long类型。
    python3中:
  • 只有int没有long,所有数字都是int类型。

注意:在python2中使用除法时,只能保留整数位,如果想要保留小数位,可以先导入一个模块。

  1. fromimport division
  2. value =3/2
  3. print(value)

    python int范围 python的int范围_python int范围

python int范围 python的int范围_64位系统_02