美文网首页
Python3中的最大整数和最大浮点数

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

作者: 40巨盗 | 来源:发表于2018-08-08 23:14 被阅读0次

    Python中的最大整数

    import sys
    max = sys.maxsize
    print (max)
    

    Python中的最大浮点数

    方法一:使用sys模块
    import sys
    max = sys.float_info.max
    print (max)
    
    方法二:使用float方法
    max = float("inf")
    print (max)
    

    相关文章

      网友评论

          本文标题:Python3中的最大整数和最大浮点数

          本文链接:https://www.haomeiwen.com/subject/ibkfvftx.html