top of page
Writer's pictureRajesh Singh

Python program to calculate the factorial of a number



Write a Python function to calculate the factorial of a number (a non-negative integer).

The function accepts the number as an argument.

This program is most for O Level Practical Exam so read it carefully.

Program:

def fact(n):

if n == 0:

return 1

else:

return n * fact(n-1)

n=int(input("Enter a number for compute the factorial : "))

print(fact(n))

Output:

Enter a number for compute the factorial : 4

24



304 views1 comment

Recent Posts

See All

1 Comment


Damian Sumiti
Damian Sumiti
Jun 19, 2023

Dear Sir/Madam,

Are you looking for Money to enlarge your business? You have come to the right place. We offer Cash at low interest rate OF 2% no matter your location (WhatsApp) number +918131851434 contact email id : sumitihomelend@gmail.com Mr. Damian Sumiti

Like
bottom of page