0
13kviews
Write a Python Program to Find the Factorial of a Number
1 Answer
written 2.9 years ago by | • modified 2.9 years ago |
Explanation
The factorial of a number is the product of all the integers from 1 to that number.
For example, the factorial of 6 (denoted as 6!) is 12345*6 = 720. Factorial is not defined for negative numbers and the factorial of zero is one, 0! …