首页 > 技术文章 > python3 获取int最大值

root0 2019-12-03 20:18 原文

python2 

import sys
print sys.maxint

 

 

python3

import sys
print(sys.maxsize)

 

推荐阅读