fork download
  1. def reverse(text):
  2. if len(text) <= 1:
  3. print text
  4.  
  5. print reverse(text[1:]) + text[0]# your code goes here
Success #stdin #stdout 0s 23352KB
stdin
hello
stdout
Standard output is empty