本文介绍了Python 3 中的 sys.maxint 是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我一直试图找出如何表示最大整数,并且我已经阅读使用 "sys.maxint"
.但是,在 Python 3 中,当我调用它时,我得到:
I've been trying to find out how to represent a maximum integer, and I've read to use "sys.maxint"
. However, in Python 3 when I call it I get:
AttributeError: module 'object' has no attribute 'maxint'
推荐答案
http://docs.python.org/3.1/whatsnew/3.0.html#整数
这篇关于Python 3 中的 sys.maxint 是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!