• <small id='c7DtT'></small><noframes id='c7DtT'>

        <legend id='c7DtT'><style id='c7DtT'><dir id='c7DtT'><q id='c7DtT'></q></dir></style></legend>

        <tfoot id='c7DtT'></tfoot>
        • <bdo id='c7DtT'></bdo><ul id='c7DtT'></ul>

        <i id='c7DtT'><tr id='c7DtT'><dt id='c7DtT'><q id='c7DtT'><span id='c7DtT'><b id='c7DtT'><form id='c7DtT'><ins id='c7DtT'></ins><ul id='c7DtT'></ul><sub id='c7DtT'></sub></form><legend id='c7DtT'></legend><bdo id='c7DtT'><pre id='c7DtT'><center id='c7DtT'></center></pre></bdo></b><th id='c7DtT'></th></span></q></dt></tr></i><div id='c7DtT'><tfoot id='c7DtT'></tfoot><dl id='c7DtT'><fieldset id='c7DtT'></fieldset></dl></div>

        有没有办法获得可以在 Python 中使用的最大整数

        时间:2023-09-11

        • <i id='gOU3r'><tr id='gOU3r'><dt id='gOU3r'><q id='gOU3r'><span id='gOU3r'><b id='gOU3r'><form id='gOU3r'><ins id='gOU3r'></ins><ul id='gOU3r'></ul><sub id='gOU3r'></sub></form><legend id='gOU3r'></legend><bdo id='gOU3r'><pre id='gOU3r'><center id='gOU3r'></center></pre></bdo></b><th id='gOU3r'></th></span></q></dt></tr></i><div id='gOU3r'><tfoot id='gOU3r'></tfoot><dl id='gOU3r'><fieldset id='gOU3r'></fieldset></dl></div>
            <bdo id='gOU3r'></bdo><ul id='gOU3r'></ul>
              <tbody id='gOU3r'></tbody>
              <tfoot id='gOU3r'></tfoot>

                1. <legend id='gOU3r'><style id='gOU3r'><dir id='gOU3r'><q id='gOU3r'></q></dir></style></legend>

                  <small id='gOU3r'></small><noframes id='gOU3r'>

                2. 本文介绍了有没有办法获得可以在 Python 中使用的最大整数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  是否有一些像 INT_MAX 这样的预定义常量?

                  Is there some pre-defined constant like INT_MAX?

                  推荐答案

                  Python 具有任意精度整数,因此没有真正的固定最大值.您只受到可用内存的限制.

                  Python has arbitrary precision integers so there is no true fixed maximum. You're only limited by available memory.

                  在 Python 2 中,有两种类型,intlong.ints 使用 C 类型,而 longs 是任意精度.您可以使用 sys.maxint 找到最大 int.但是ints会自动提升为long,所以你通常不用担心:

                  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
                  

                  工作正常并返回 long.

                  sys.maxint 甚至在 Python 3 中都不存在,因为 intlong 被统一为一个任意精度的 int 输入.

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

                  这篇关于有没有办法获得可以在 Python 中使用的最大整数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:+ 不支持的操作数类型:“int"和“str" 下一篇:使用 isinstance 比较 boolean 和 int

                  相关文章

                  最新文章

                3. <tfoot id='eYwoY'></tfoot>

                        <bdo id='eYwoY'></bdo><ul id='eYwoY'></ul>
                      <i id='eYwoY'><tr id='eYwoY'><dt id='eYwoY'><q id='eYwoY'><span id='eYwoY'><b id='eYwoY'><form id='eYwoY'><ins id='eYwoY'></ins><ul id='eYwoY'></ul><sub id='eYwoY'></sub></form><legend id='eYwoY'></legend><bdo id='eYwoY'><pre id='eYwoY'><center id='eYwoY'></center></pre></bdo></b><th id='eYwoY'></th></span></q></dt></tr></i><div id='eYwoY'><tfoot id='eYwoY'></tfoot><dl id='eYwoY'><fieldset id='eYwoY'></fieldset></dl></div>

                      <small id='eYwoY'></small><noframes id='eYwoY'>

                      <legend id='eYwoY'><style id='eYwoY'><dir id='eYwoY'><q id='eYwoY'></q></dir></style></legend>