I am looking for minimum and maximum values for integers in python. For eg., in Java, we have Integer.MIN_VALUE and Integer.MAX_VALUE. Is there som
Integer.MIN_VALUE
Integer.MAX_VALUE
For Python 3, it is
import sys max = sys.maxsize min = -sys.maxsize - 1