Skip to main content
Search
Search This Blog
Priya Digital World
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
July 14, 2020
Python program to find factorial of Number
#factorial of a number using function
def
fact
():
num = int(
input
(
"Enter any number = "
))
fact =
1
for
i
in
range
(
1
,num+
1
):
fact = fact * i
return
fact
fact()
Comments
Popular Posts
August 04, 2023
Falcon Integration in IMPS payment service
July 25, 2020
Python Data Structure Assignment_7.2 || Week 3
Comments
Post a Comment