exercism-solutions/python/reverse-string/reverse_string.py
2021-07-05 17:50:40 +03:00

2 lines
41 B
Python

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