zqifa

python3 获取int最大值

python2 中获取int最大值

import sys

i = sys.maxint

print i

 

但是在python3中,报错:

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

 

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

import sys

i = sys.maxsize

print(i)

 

官网说明文档:https://docs.python.org/3.1/whatsnew/3.0.html#integers

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2021-07-03
  • 2021-09-19
  • 2021-12-27
猜你喜欢
  • 2022-01-24
  • 2021-10-25
  • 2021-11-13
  • 2021-07-27
  • 2022-12-23
  • 2021-09-15
相关资源
相似解决方案