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 without python magic.
>>> def reversest(st): a=len(st)-1 for i in st: print(st[a],end="") a=a-1