Skip to main content
sys.maxint was removed from python 3 read the docs in the link you provided
Source Link

I rely heavily on commands like this.

python -c 'import sys; print(sys.maxintmaxsize)' 

Max int returned: 9223372036854775807

For more references for 'sys' you should access

https://docs.python.org/3/library/sys.html

https://docs.python.org/3/library/sys.html#sys.maxsize

I rely heavily on commands like this.

python -c 'import sys; print(sys.maxint)' 

Max int returned: 9223372036854775807

For more references for 'sys' you should access

https://docs.python.org/3/library/sys.html

I rely heavily on commands like this.

python -c 'import sys; print(sys.maxsize)' 

Max int returned: 9223372036854775807

For more references for 'sys' you should access

https://docs.python.org/3/library/sys.html

https://docs.python.org/3/library/sys.html#sys.maxsize

Source Link
Wender
  • 1k
  • 17
  • 24

I rely heavily on commands like this.

python -c 'import sys; print(sys.maxint)' 

Max int returned: 9223372036854775807

For more references for 'sys' you should access

https://docs.python.org/3/library/sys.html