python3 获取int最大值
python2 中获取int最大值
import sys
i = sys.maxint
print i
但是在python3中,报错:
AttributeError: module 'sys' has no attribute 'maxint'
看了官网文档后了解python3中没有maxint了,只有maxsize
import sys
i = sys.maxsize
print(i)
官网说明文档:https://docs.python.org/3.1/whatsnew/3.0.html#integers
如果觉得这文章还算用心,请劳驾点击右下角的推荐,这是对我们这些做开源分享的最大的肯定,谢谢。
浙公网安备 33010602011771号