What is the maximum float in Python?

PythonIntLong IntegerMax

Python Problem Overview


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

What is the maximum float or long in Python?

Python Solutions


Solution 1 - 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.

Solution 2 - Python

sys.maxint is not the largest integer supported by python. It's the largest integer supported by python's regular integer type.

Solution 3 - Python

If you are using numpy, you can use dtype 'float128' and get a max float of 10e+4931

>>> np.finfo(np.float128)
finfo(resolution=1e-18, min=-1.18973149536e+4932, max=1.18973149536e+4932, dtype=float128)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionladyfafaView Question on Stackoverflow
Solution 1 - PythonDave WebbView Answer on Stackoverflow
Solution 2 - PythonGWWView Answer on Stackoverflow
Solution 3 - PythonThe AelfinnView Answer on Stackoverflow