有没有一种方法可以得到Python中可以使用的最大整数?
是否有一些预定义的常量,例如INT_MAX
?
Is there some pre-defined constant like INT_MAX
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有一些预定义的常量,例如INT_MAX
?
Is there some pre-defined constant like INT_MAX
?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
Python 具有任意精度的整数,因此不存在真正的固定最大值。您仅受可用内存的限制。
在Python 2中,有两种类型:
int
和long
。int
使用 C 类型,而long
是任意精度。您可以使用 sys.maxint 来查找最大值 int。但是int
会自动提升为long
,因此您通常不需要担心它:工作正常并返回
long
。sys.maxint
在 Python 3 中甚至不存在,因为int
和long
被统一为单个任意精度int
> 类型。Python has arbitrary precision integers so there is no true fixed maximum. You're only limited by available memory.
In Python 2, there are two types,
int
andlong
.int
s use a C type, whilelong
s are arbitrary precision. You can usesys.maxint
to find the maximumint
. Butint
s are automatically promoted tolong
, so you usually don't need to worry about it:works fine and returns a
long
.sys.maxint
does not even exist in Python 3, sinceint
andlong
were unified into a single arbitrary precisionint
type.