by CodeChum Admin
For those of you who may not now, a factorial is a product of multiplying from 1 until the number. Now, you must make a program that will accept an integer and then print out its factorial using loops.
Are you up for this task?
def factorial(num):
fac = 1
for i in range(1, num + 1):
fac = fac * i
return("factorial of ", num, " is ", fac)
factorial(8)
Comments
Leave a comment