Saved Bookmarks
| 1. |
Write a Recursive function recurfactorial(n) in python to calculate and return the factorial of number n passed to the parameter. |
|
Answer» def recurfactorial(n): if n == 1: return n else: return n*recurfactorial(n-1) num = int(input("Enter a number: ")) if num < 0: print("Sorry, factorial does not exist for negative numbers") elif num == 0: print("The factorial of 0 is 1") else: print("The factorial of",num,"is",recurfactorial(num) |
|