我一直在尝试找出如何表示最大整数,并且我已经阅读过使用"sys.maxint". 但是,在 Python 3 中,当我调用它时,我得到:
"sys.maxint"
AttributeError: module 'object' has no attribute 'maxint'
sys.maxint 常量已被删除,因为整数值不再有限制。但是,sys.maxsize 可以用作大于任何实际列表或字符串索引的整数。它符合实现的“自然”整数大小,并且通常与同一平台上先前版本中的 sys.maxint 相同(假设相同的构建选项)。
http://docs.python.org/3.1/whatsnew/3.0.html#integers