This website requires JavaScript.
Explore
Help
Register
Sign In
exercism
/
python
Watch
1
Star
0
Fork
0
You've already forked python
Code
Issues
Pull Requests
Actions
1
Packages
Projects
Releases
Wiki
Activity
Files
a83f53697a1a213967838a78b86f2b358727d76f
python
/
exercises
/
reverse-string
/
reverse_string.py
3 lines
31 B
Python
Raw
Normal View
History
Unescape
Escape
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 14:59:14 +02:00
def
reverse
(
text
=
'
'
)
:
reverse-string: add to track (#1126) * reverse-string: add to track * reverse-string: improve example.py * reverse-string: update config.json * reverse-string: add uuid * reverse-string: rename test file
2017-12-31 13:30:49 +00:00
pass
Reference in New Issue
Copy Permalink