Factorial Program in Python | Sum of Natural Number in Python | Largest Number Program in Python

Опубликовано: 05 Январь 2022
на канале: Code Factory
9
0

Factorial Program in Python | Sum of Natural Number in Python | Largest Number Program in Python | Learn Python with Awesome Examples in Hindi

Write a Program to find Sum of Natural numbers in Python
num = int(input("Enter the Number: "))
if num < 0:
print('no. is negative')
else:
sum = 0
while (num > 0): #num is 7
sum += num #0+7=7, 7+6=13
num -= 1 #7-1=6, 6-1=5
print('Sum: ', sum)

Write a Program to find Largest number among three natural numbers
a = 5
b = 10
c = 2
if a > b and a > c:
print("A is Largest")
elif c > a and c > b:
print("C is Largest")
else:
print("B is Largest")

Write a Program to find Factorial of a number
num = int(input("Enter a number: "))
factorial = 1
if num < 0:
print('Factorial Does not exist')
elif num == 0:
print(factorial)
else:
for i in range(1, num+1):
factorial = factorial * i # 5*4*3*2*1 = 120
print(f'Factorial of {num} is {factorial}')

Playlist Link :    • Learn Python By Awesome Examples in H...  

Videos in this Playlist:
1) Learn Python by Examples in Hindi | Install Visual Studio | Getting Input from User | Basic Programs
   • Learn Python by Examples in Hindi | I...  

2) Python as a Calculator | Python Calculator | Quick Calculation by Python
   • Python as a Calculator | Python Calcu...  

3) Swapping Program of two number | Find Square Root of a Number | Check whether a no. is +ve or -ve
   • Swapping Program of two number | Find...  

4) Print Fibonacci Series | Find Simple Interest in Python | Check Whether a number is Even or Odd
   • Print Fibonacci Series | Find Simple ...  

Videos on Channel:
1) How to Increase Text Size in Python IDLE | Python IDLE | Python for Beginners
   • How to Increase Text Size in Python I...  

2) What is Tkinter in Hindi? | Tkinter in Python | Tkinter modern GUI | What is the use of Tkinter?
   • What is Tkinter in Hindi? | Tkinter i...  

3) What is HTML in Hindi and Intro About HTML.
   • What is HTML in Hindi and Intro About...  

4) HTML Elements and Tags | html elements explained in hindi | basic html elements class 10
   • HTML Elements and Tags | html element...  

Instagram : instagram.com/codefactory98 or @codefactory98
Facebook : facebook.com/codefactory98

#pythondeveloper #datastructure #appdeveloper #javaprogramming #developerlife #programminglanguage #pythonprogramming #programmers #coder #programming #python3 #pythoncode #datascience #algorithms #machinelearning #artificialintelligence #pythonprogramming #pythonprogrammer #pythondeveloper #ai #viral #youtube #viralvideo #trends #trending #codingquotes #codingpics #codingjokes #codinghumor #codingforkids #codingdecoding #codingtime #codinganddecoding #codingblog #codingmoments