Advertisement
ancestor_tunji

#factorial_function

Feb 11th, 2020
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. #factorial_function
  2. def factorial_function(y):
  3.     if y == 1:
  4.         return 1
  5.     else:
  6.         return y * factorial_function(y - 1)
  7. print(factorial_function(4))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement