Talk about the difference between python ordinary integers and long integers.
Ython's short integer, long integer and other data types have scope restrictions. The value range of short integers in python [-24 17483648, 24 17483647], what should I do if it exceeds this range? You can use long integers, but you must write an uppercase "L" at the end, and lowercase is also acceptable. But in order to avoid confusion with 1, l is recommended.