Files
python/exercises/practice/reverse-string/example.py
2021-01-29 11:14:36 -05:00

3 lines
44 B
Python

def reverse(text=''):
return text[::-1]