How large can the input I supply to the input()
function be?
Unfortunately, there was no easy way to test it. After using a lot of copy-pasting I couldn't get input
to fail on any input I supplied. (and I eventually gave up)
The documentation for the input
function doesn't mention anything regarding this:
If the
prompt
argument is present, it is written to standard output without a trailing newline. The function then reads a line from input, converts it to a string (stripping a trailing newline), and returns that. When EOF is read,EOFError
is raised.
So, I'm guessing there is no limit? Does anyone know if there is and, if so, how much is it?
In Python, we use input() function to take input from the user. Whatever you enter as input, the input function converts it into a string. If you enter an integer value still input() function convert it into a string. Syntax: input(prompt)
you can use getkey() or getstr(). but using getstr() is simpler, and it give the user choice to enter less than 5 char if he want, but no more than 5.
The input() function converts all the user input to a string even if that's the number. User can enter Unicode characters as well, as shown below.
Use a while loop to take infinite input in Python. Save that input to the other data structure such a list and use any condition to break the while loop.
Of course there is, it can't be limitless*. The key sentence from the documentation that I believe needs highlighting is:
[...] The function then reads a line from input, converts it to a string (stripping a trailing newline) [...]
(emphasis mine)
Since it converts the input you supply into a Python str
object it essentially translates to: "Its size has to be less than or equal to the largest string Python can create".
The reason why no explicit size is given is probably because this is an implementation detail. Enforcing a maximum size to all other implementations of Python wouldn't make much sense.
*In CPython, at least, the largest size of a string is bounded by how big its index is allowed to be (see PEP 353). That is, how big the number in the brackets []
is allowed to be when you try and index it:
>>> s = '' >>> s[2 ** 63] IndexErrorTraceback (most recent call last) <ipython-input-10-75e9ac36da20> in <module>() ----> 1 s[2 ** 63] IndexError: cannot fit 'int' into an index-sized integer
(try the previous with 2 ** 63 - 1
, that's the positive acceptable limit, -2 ** 63
is the negative limit.)
For indices, it isn't Python numbers that are internally used; instead, it is a Py_ssize_t
which is a signed 32/64 bit int on 32/64 bit machines respectively. So, that's the hard limit from what it seems.
(as the error message states, int and intex-sized integer are two different things)
It also seems like input()
explicitly checks if the input supplied is larger than PY_SSIZE_T_MAX
(the maximum size of Py_ssize_t
) before converting:
if (len > PY_SSIZE_T_MAX) { PyErr_SetString(PyExc_OverflowError, "input: input too long"); result = NULL; }
Then it converts the input to a Python str
with PyUnicode_Decode
.
To put that in perspective for you; if the average book is 500.000
characters long and the estimation for the total number of books is around 130 million, you could theoretically input
around:
>>> ((2 ** 63) - 1) // 500000 * 130000000 141898
times those characters; it would probably take you some time, though :-) (and you'd be limited by available memory first!)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With