Answers for "factorial of 5 using for 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
0

give the factorials of 6 in python

def factorial(x):
  if x == 0:
    return 1
  return x * factorial(x - 1)

result = factorial(6)
print(result)
Posted by: Guest on April-04-2022

Code answers related to "factorial of 5 using for loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language