Files
python/exercises/reverse-string/reverse_string.py
Frerich Raabe a58792fd65 reverse-string: Don't redefine builting function 'input' (#1412)
It hurts readability to redefine the meaning of well-known builtins such
as 'input', and pylint rightfully warns about this, saying

  W:  1,12: Redefining built-in 'input' (redefined-builtin)

It's a little unfortunate that Python grabs this part of the namespace,
but let's fix the issue by using a different word for 'the input text'.
2018-06-28 08:59:14 -04:00

3 lines
31 B
Python