top of page
Click here to go to the home page of AskTheCode.

Python Program for factorial of a number

Team ATC

Asked: Anonymously |Category: Python

 

a=eval(input("Enter the value of a : "))

def factorial(n):

if n==1:

return 1

return n*factorial(n-1)

print(factorial(a))

 
 
 

Recent Posts

See All

Commentaires


bottom of page