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
Reverse a string in python without using reversed() or [::-1]
def reverse(test): n = len(test) x="" for i in range(n-1,-1,-1): x += test[i] return x