Python Program to Add Two Numbers | Sum ( addition ) of 2 num | Tutorial in Hindi

preview_player
Показать описание
in this Python Programming Video Tutorial in Hindi you will learn to write a Program to Add Two integer Numbers or to find the sum of two numbers ( entered by the user )

This is one of the simplest program where we ask the user to enter two numbers and we store them in two variables.

After that we use the addition operator and we store the result and we display that to the screen.

For more tutorials visit our website

LearningLad in social media

#PythonProgramming #ExampleProgram #LearningLadHindi
Learn#WithMe
Рекомендации по теме
Комментарии
Автор

Tomorrow My Practical Exam Thank You Sir For This Much Of Knowledge

streetdancers
Автор

Thank you sir tomorrow is my practical exam hai

chhayaharde
Автор

amazing bro u made my pa1 practical with full marks i am in 6th and u helped me alot thanks

devanshnomad
Автор

Thank u so much sir for this program tomorrow is my practical

Rajput_
Автор

Thank u sir today is my practical of python program

Thunder_editz__
Автор

num1=int=input ("Enter your Namber1. ")
num2=int=input ("Enter your Namber2. ")
num3=int=input ("Enter your Namber3. ")
sum=num1+num2 +num3
print(num1, "+", num2, "+", num3, "=", sum)
😅😅

AnkushKumar-ykew
Автор

Thanks a lot sir for your wonderful explanation💠

mr.gamergenixopshorts
Автор

hello sir can you please share vedios like how we right simple test cases for this using python?

varshat
Автор

What is mistake here....

a=input("Login or sign-up\n").lower()
if a in ["1", "login", "a", "log"]:
a1=input("E-Mail:")
a2=input("Password:")
print("Welcome!!")

elif a in ["2", "b", "signup", "sign-up", "sign up"]:
a3=input("Name:")
a4=input("Mobile No.:")
a5=input("E-Mail:")
a6=input("Enter Password:")
a7=input("Confirm Password:")
if (a6==a7):
print("WELCOME!!")
else:
print("Password Does not Matched!! Try Again!!\n")
continue

VishwasVlogsHere
Автор

thanks man I'm using Arduino but you helped me tho. <3

rxseqvartz
Автор

num1 = int(intput(enter number 1))
num2 = int(intput(enter number 2))
result = num1 + num2
print ("{0} + {1} = {0}"(num1, num2, num3))

vedantwanjari
Автор

X=int (input ("1st no:"))
Y=int (input ("2nd no:"))
Z=int (input ("3rd no:"))
Print("the addition of those 3 no = x+y+z)
Is it correct?

kar
Автор

num1 = int((input)("Enter first number : "))
num2 = int((input)("Enter second number : "))
num3 = int((input)("Enter third number : "))
sum = num1 + num2 + num3
print(" {0} + {1} + {2} = {3}".format(num1, num2, num3, sum))

VivekanandRamdin
Автор

In which thing you have done vscode or any other softeare

komalpandey
Автор

Sir mujhe project dia giya hai write a program to print the sum of two numbers to ye sahi hai na

Blackmagic
Автор

Enter number 1=45
Enter number 2=78
Entet number 3=56
=179

YoutubeChannel-yljt
Автор

Sir mere 1st number input ke baad output continue chlta hai enter value and so on second ka puch hi nhi rha hai ??

whitehillclassical
Автор

please share how to install python easy steps, thank u

indranathbandyapadhyay
Автор

python start karne ki lia koi simple book suggest ??? in English. I use linux OS .what/ how I can run python program??? thank you

shubhambiswas
Автор

x=int(input("Enter 1st Number:"))
y=int(input("Enter 2nd Number:"))

result = x + y

print("{0} + {1} = {2}").format(x, y, result)

VishwasVlogsHere