Answers for "max float value python"

1

get max float value python

>>> sys.float_info.max
1.7976931348623157e+308
Posted by: Guest on May-18-2021
5

max int value in python

import sys
MAX_INT = sys.maxsize
print(MAX_INT)

''' NOTE: value of sys.maxsize is depend on the fact that how much bit a machine is. '''
Posted by: Guest on August-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language