我是靠谱客的博主 完美铃铛,最近开发中收集的这篇文章主要介绍python浮点数多少位_Python中的最大浮点数是多少?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1586010002-jmsa.png

I think the maximum integer in python is available by calling sys.maxint.

What is the maximum float or long in Python?

解决方案

For float have a look at sys.float_info:

>>> 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)

Specifically, sys.float_info.max:

>>> sys.float_info.max

1.7976931348623157e+308

If that's not big enough, there's always positive infinity:

>>> infinity = float("inf")

>>> infinity

inf

>>> infinity / 10000

inf

The long type has unlimited precision, so I think you're only limited by available memory.

最后

以上就是完美铃铛为你收集整理的python浮点数多少位_Python中的最大浮点数是多少?的全部内容,希望文章能够帮你解决python浮点数多少位_Python中的最大浮点数是多少?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部