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}")
Day 11 of #100DaysOfCode and #Python
— Durga Pokharel (@mathdurga) January 4, 2021
* More about CSS properties
* Python program to find factorial of number. pic.twitter.com/DWGjzJk6XC
Top comments (2)
Your code is short this time. It is good. Today, you did well with the variable names...
Yesterday I did thats much🙂