What is the max value of integer in python for 64-bit system.
I tried sys.maxsize and I tried incrementing the value by 1 and still showing type as int. If it is converted to long data type, why it is not appending L at the end. Also how to find the max value of long type?
sys.maxsize
9223372036854775807
type(sys.maxsize +1)
<class 'int'>
sys.maxsize+1
9223372036854775808