Guest User

Untitled

a guest
Apr 26th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. def recRev(x, y):
  2. if(x>0):
  3. y+=x%10
  4. return (recRev(x/10, y*10))
  5. else:
  6. return (y/10)
Add Comment
Please, Sign In to add comment