DEV Community

Durga Pokharel
Durga Pokharel

Posted on

5

Day 11 of 100DaysOfCode: Python Program to find the factorial of number

This is my 11th day of #100daysofcode.

Today I learned about more properties of CSS from freecodecamp. And I also tried to write a simple python code to find factorial of number.

Python Program to Find Factorial of Number

My code is simple. At first users give integer type number. I initialized factorial as 1. There is a loop from range 1 to n + 1 and gave the condition. At last I print the factorial.

n = int(input("enter the number"))
factorial = 1
for i in range(1,n+1):
    factorial *= i

print(f"factorial of {n} = {factorial}")

Enter fullscreen mode Exit fullscreen mode

Day 11 of #100DaysOfCode and #Python
* More about CSS properties
* Python program to find factorial of number. pic.twitter.com/DWGjzJk6XC

— Durga Pokharel (@mathdurga) January 4, 2021

Speedy emails, satisfied customers

Postmark Image

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

Top comments (2)

Collapse
 
otumianempire profile image
Michael Otu

Your code is short this time. It is good. Today, you did well with the variable names...

Collapse
 
iamdurga profile image
Durga Pokharel

Yesterday I did thats much🙂

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Explore a sea of insights with this enlightening post, highly esteemed within the nurturing DEV Community. Coders of all stripes are invited to participate and contribute to our shared knowledge.

Expressing gratitude with a simple "thank you" can make a big impact. Leave your thanks in the comments!

On DEV, exchanging ideas smooths our way and strengthens our community bonds. Found this useful? A quick note of thanks to the author can mean a lot.

Okay