Skip to content

Commit a713264

Browse files
few comments are added
1 parent ff10fce commit a713264

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

FIND FACTORIAL OF A NUMBER.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Python program to find the factorial of a number provided by the user.
22

33
def factorial(n):
4-
if n < 0:
4+
if n < 0: # factorial of number less than 0 is not possible
55
return "Oops!Factorial Not Possible"
6-
elif n == 0:
6+
elif n == 0: # 0! = 1; when n=0 it returns 1 to the function which is calling it previously.
77
return 1
88
else:
9-
return n*factorial(n-1)
9+
return n*factorial(n-1)
10+
#Recursive function. At every iteration "n" is getting reduced by 1 until the "n" is equal to 0.
1011

11-
n = int(input())
12-
print(factorial(n))
12+
n = int(input("Enter a number: ")) # asks the user for input
13+
print(factorial(n)) # function call

0 commit comments

Comments
 (0)