Find out the factorial of given number in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code num=int(input(“Enter the number :”))fact=1for n in range(1,num+1): fact=fact*nprint(“Sum of number is : “,fact) Output Enter the number :5Sum of number is : 120 View All Python Programs