Saved Bookmarks
| 1. |
Write a program to generate and print factorial number up to n |
| Answer» n=int(input("Enter the value of n : "))f=1for i in range(1,n):⠀⠀f*=1print("The factorial is ", f) | |