Program to find factorial of a number
Answers
Answered by
1
Answer:
Ghatiya question i have no answer of this question ok
Answered by
5
Answer:
Factorial of a number in python
Step-by-step explanation:
n=int(input("enter the number"))
def fact(n) :
if n==1:
return n
else:
return n*fact(n-1)
Similar questions