1 def reverseString(str,n): 2 """Reverse the String""" 3 if n<len(str)-1: 4 reverseString(str,n+1); 5 print ('%c' % (str[n])),