有没有一种方法可以得到Python中可以使用的最大整数?

发布于 2024-10-10 01:44:24 字数 42 浏览 1 评论 0原文

是否有一些预定义的常量,例如INT_MAX

Is there some pre-defined constant like INT_MAX?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风向决定发型 2024-10-17 01:44:24

Python 具有任意精度的整数,因此不存在真正的固定最大值。您仅受可用内存的限制。

在Python 2中,有两种类型:intlongint 使用 C 类型,而 long 是任意精度。您可以使用 sys.maxint 来查找最大值 int。但是 int 会自动提升为 long,因此您通常不需要担心它:

sys.maxint + 1

工作正常并返回 long

sys.maxint 在 Python 3 中甚至不存在,因为 intlong 被统一为单个任意精度 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 and long. ints use a C type, while longs are arbitrary precision. You can use sys.maxint to find the maximum int. But ints are automatically promoted to long, so you usually don't need to worry about it:

sys.maxint + 1

works fine and returns a long.

sys.maxint does not even exist in Python 3, since int and long were unified into a single arbitrary precision int type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文