📜  大整数 python 代码示例

📅  最后修改于: 2022-03-11 14:46:38.077000             🧑  作者: Mango

代码示例1
Python supports a "bignum" integer type which can work with 
arbitrarily large numbers. 
In Python 2.5+, this type is called long and is separate from 
the int type, but the interpreter will automatically use whichever 
is more appropriate. 
In Python 3.0+, the int type has been dropped completely.