factorial sequence code in python with while loops
31
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)