Find factorial of given number in Python Get link Facebook X Pinterest Email Other Apps April 14, 2021 fact=1 num=int(input("enter the number:"))while(num>0): fact=fact*num num=num-1print("Factorial of given number=",fact) Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment