Answers for "write a python code to calculate factorial of a number using for loop."

20

python calculate factorial

def factorial(n):
    fact = 1
    for num in range(2, n + 1):
        fact = fact * num
    return(fact)
Posted by: Guest on May-24-2020
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 "write a python code to calculate factorial of a number using for loop."

Python Answers by Framework

Browse Popular Code Answers by Language