We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff10fce commit a713264Copy full SHA for a713264
FIND FACTORIAL OF A NUMBER.py
@@ -1,12 +1,13 @@
1
# Python program to find the factorial of a number provided by the user.
2
3
def factorial(n):
4
- if n < 0:
+ if n < 0: # factorial of number less than 0 is not possible
5
return "Oops!Factorial Not Possible"
6
- elif n == 0:
+ elif n == 0: # 0! = 1; when n=0 it returns 1 to the function which is calling it previously.
7
return 1
8
else:
9
- return n*factorial(n-1)
+ return n*factorial(n-1)
10
+#Recursive function. At every iteration "n" is getting reduced by 1 until the "n" is equal to 0.
11
-n = int(input())
12
-print(factorial(n))
+n = int(input("Enter a number: ")) # asks the user for input
13
+print(factorial(n)) # function call
0 commit comments