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

Heroku

This site is built on Heroku

Join the ranks of developers at Salesforce, Airbase, DEV, and more who deploy their mission critical applications on Heroku. Sign up today and launch your first app!

Get Started

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πŸ™‚

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay