实例讲解Python中整数的最大值输出
在Python中可以存储很大的值,如下面的Python示例程序:
x = 10000000000000000000000000000000000000000000; x = x + 1 print (x)
输出:
10000000000000000000000000000000000000000001
在Python中,整数的值不受位数的限制,可以扩展到可用内存的限制。因此,我们永远不需要任何特殊的安排来存储大数字(想象一下在C / C ++中进行上述算术)。
在Python 3中,对于所有类型的整数,只有一种类型“int”。在Python 2.7中。有两种不同的类型“int”(32位)和“long int”与Python 3.x的“int”相同,即可以存储任意大的数字。
#Python 2.7中有两种类型:int和long int #在Python 3中只有一种类型:int x = 10 print(type(x)) x = 10000000000000000000000000000000000000000000 print(type(x))
Python 2.7中的输出:
<type 'int'>
<type 'long'>
Python 3中的输出:
<type 'int'>
<type 'int'>
相关推荐
huavhuahua 2020-11-20
weiiron 2020-11-16
cakecc00 2020-11-15
千锋 2020-11-15
JakobHu 2020-11-14
guangcheng 2020-11-13
xirongxudlut 2020-11-10
solarLan 2020-11-09
pythonxuexi 2020-11-08
文山羊 2020-11-07
susmote 2020-11-07
wuShiJingZuo 2020-11-05
Pythonjeff远 2020-11-06
jacktangj 2020-11-04
lousir 2020-11-04
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17