Maximum Length of String in Python



Maximum length of a string is platform dependent and depends upon address space and/or RAM. The maxsize constant defined in sys module returns 263-1 on 64 bit system.

>>> import sys
>>> sys.maxsize
   9223372036854775807

The largest positive integer supported by the platform's Py_ssize_t type, is the maximum size lists, strings, dicts, and many other containers can have.

Updated on: 2019-07-30T22:30:20+05:30

7K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements