We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05e8e03 commit 3293126Copy full SHA for 3293126
FIND FACTORIAL OF A NUMBER.py
@@ -3,7 +3,7 @@
3
def factorial(n):
4
if n < 0:
5
return("Oops!Factorial Not Possible")
6
- elif n = 0:
+elif n == 0:
7
return 1
8
else:
9
return n*factorial(n-1)
0 commit comments