当前位置:   article > 正文

Python3中的最大整数和最大浮点数_python 浮点数取大

python 浮点数取大

Python中的最大整数

Python中可以通过sys模块来得到int的最大值. python2中使用的方法是

import sys
max = sys.maxint
print (max)
  • 1
  • 2
  • 3

python3中使用的方法是:

import sys
max = sys.maxsize
print (max)
  • 1
  • 2
  • 3

Python中获得最大浮点数

方法一:使用sys模块

>>> import sys
>>> sys.float_info
sys.floatinfo(max=1.7976931348623157e+308, max_exp=1024, max_10_exp=308, min=2.2
250738585072014e-308, min_exp=-1021, min_10_exp=-307, dig=15, mant_dig=53, epsil
on=2.2204460492503131e-16, radix=2, rounds=1)
>>> sys.float_info.max
1.7976931348623157e+308
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

方法二:使用float函数

>>> infinity = float("inf")
>>> infinity
inf
>>> infinity / 10000
inf
  • 1
  • 2
  • 3
  • 4
  • 5

参考链接

1.Python中的最大浮点数是多少?
2.python中获得int的最大值
3.python3 获取int最大值

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/772817
推荐阅读
相关标签
  

闽ICP备14008679号