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
def reverse(input): return reduce(lambda x,y : y+x, input)