Answers for "calculate factorial in python using while loop"

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
3

factorial python for loop

#Factorial 
'''factorial n! - n* n-1*n-2..1'''

def fac_iterative_method(n):
    fac = 1
    for i in range(n):
        fac = (fac * (i+1))
        print('fac of',i+1,'=',fac)
        
number = int(input('enter the number'))
fac_iterative_method(number)
Posted by: Guest on July-20-2020

Code answers related to "calculate factorial in python using while loop"

Python Answers by Framework

Browse Popular Code Answers by Language