use the following code to get the maximum integer 9223372036854775807
import sys
max = sys.maxsize
print (max)
but print (9223372036854775807 / 9223372036854775807) is still
with correct results.since the maximum range of integer operations in python depends on the size of memory, what does the so-called maximum integer mean? obviously, it can continue to be larger?