Python program to Get Factorial Using for Loop
x = abs(int(input("Insert any number: ")))
factorial = 1
for i in range(2, x+1):
factorial *= i
print("The result of factorial = ",factorial)
Output:
|
Insert any number: 4
Insert any number: 12 |