python3 获取int最大值

python2 

import sys
print sys.maxint

python3

import sys
print(sys.maxsize)
原文地址:https://www.cnblogs.com/root0/p/11979144.html