Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #python recursion example
- def fat(x):
- """ calc fatorial de x """
- if(x == 1):
- return 1
- else:
- return x * fat(x - 1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement