Answers for "factorial of a number using while loop in python"

1

factorial sequence code in python with while loops

num = int(input("enter a number: "))
 
fac = 1
i = 1
 
while i <= num:
fac = fac * i
i = i + 1
 
print("factorial of ", num, " is ", fac)
Posted by: Guest on August-02-2021

Code answers related to "factorial of a number using while loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language