Files
exercism/python/reverse-string/reverse_string.py
2019-07-13 04:16:23 -05:00

3 lines
41 B
Python

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