Math, asked by blessontbaby5462, 1 year ago

Program to find factorial of a number

Answers

Answered by whebewhebey
1

Answer:

Ghatiya question i have no answer of this question ok

Answered by kushmi
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