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