python获取最大值

python2 中获取int最大值

import sys

print sys.maxint

 

 

但是在python3中,报错:

AttributeError: module 'sys' has no attribute 'maxint'

 

看了官网文档后了解python3中没有maxint了,只有maxsize

import sys

print( sys.maxsize)

 

posted @ 2018-05-12 15:24  天剑含光  阅读(1874)  评论(0编辑  收藏  举报