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)
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)
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)
find the factorial of a given integer in python
import math
num = 5
print("The factorial of 5 is : ", end="")
print(math.factorial(num))
# output - The factorial of 5 is : 120
# The factorial of a number is the function that multiplies the number by every natural number below it
# e.g. - 1 * 2 * 3 * 4 * 5 = 120
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us