I am new to python and I am required to create a factorial function. I have created a function that gives the factorial of a number but I want some help from stackflow community.
Here is my code
a = 5
b = 1
for i in range(1,a+1):
b = b * i
print b
And this is my output:
I am getting 120 (factorial value) but I am also getting other values like 1, 2, 6. How can I only print factorial value and not other values.
You can just use the
Math
library in the Python, Try this following codeOr, In your Code, you are trying to print the 'b' inside the loop, So your getting prints in every loop time, just put the
print b
in the out side of the loop