exercism/python/reverse-string/reverse_string.py

3 lines
46 B
Python

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