Advertisement
wagner-cipriano

python recursion example

Oct 16th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #python recursion example
  2. def fat(x):
  3.     """ calc fatorial de x """
  4.     if(x == 1):
  5.         return 1
  6.     else:
  7.         return x * fat(x - 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement