There is no built in reverse function for Python\'s str object. What is the best way of implementing this method?
reverse
str
If supplying a very conci
original = "string" rev_index = original[::-1] rev_func = list(reversed(list(original))) #nsfw print(original) print(rev_index) print(''.join(rev_func))