Source Code/Additional Material – https://www.codewithharry.com/videos/python-tutorials-for-absolute-beginners-7
►Full Python tutorials for absolute beginners (Hindi) playlist – https://www.youtube.com/playlist?list=PLu0W_9lII9agICnT8t4iYVSZ3eykIAOME
►Click here to subscribe – https://www.youtube.com/channel/UCeVMnSShP_Iviwkknt83cww
Best Hindi Videos For Learning Programming:
►Learn Python In One Video – https://www.youtube.com/watch?v=qHJjMvHLJdg
►Learn JavaScript in One Video – https://www.youtube.com/watch?v=onbBV0uFVpo
►Learn PHP In One Video – https://www.youtube.com/watch?v=xW7ro3lwaCI
►Machine Learning Using Python – https://www.youtube.com/playlist?list=PLu0W_9lII9ai6fAMHp-acBmJONT7Y4BSG
►Creating & Hosting A Website (Tech Blog) Using Python – https://www.youtube.com/playlist?list=PLu0W_9lII9agAiWp6Y41ueUKx1VcTRxmf
►Advanced Python Tutorials – https://www.youtube.com/playlist?list=PLu0W_9lII9aiJWQ7VhY712fuimEpQZYp4
►Object Oriented Programming In Python – https://www.youtube.com/playlist?list=PLu0W_9lII9ahfRrhFcoB-4lpp9YaBmdCP
►Python Data Science and Big Data Tutorials – https://www.youtube.com/playlist?list=PLu0W_9lII9agK8pojo23OHiNz3Jm6VQCH
Follow Me On Social Media
►Website (created using Flask) – https://www.codewithharry.com
►Facebook – https://www.facebook.com/CodeWithHarry
►Instagram (Guaranteed Replies :)) – https://www.instagram.com/haris_magical/
►Personal Facebook A/c – https://www.facebook.com/geekyharis
Twitter – https://twitter.com/Haris_Is_Here
Proudly WWW.PONIREVO.COM
num1=input(enter 1st no. 🙂
num2=input(enter 2nd no.:)
Result =float(num1)+float(num2)
Print(result)
print("Enter the two number for addition:")
numinput1= input()
numinput2= input()
print("Your answer is",int(numinput1)+int(numinput2))
a=int(input("enter the first number"))
b=int(input("enter the second number")
c=a+b
print(c)
bro white background ki jagah dark mode use karo, white zyada visible nahi hai
Sir, please check if it is okay or not! answer of the quiz
#Simple calculator to add two numbers from the user.
#date– 5/24/2020
print("PLease enter your first numbern")
#variables declaration
firstnum = input()
print("PLease enter your second numbern")
#variable declaration
seconfnum = input()
#Output of the program
print("The sum of the given numbers isn",int(firstnum)+int(seconfnum))
print("what is your first number")
inp1=input()
print("what is your second number")
inp2 =input()
print ("your answer")
print( int(inp1) * int(inp2))
print("thanks for use")
print("Please enter first number: ")
invar1 = int(input())
print("Please enter second number:")
invar2 = int(input())
print("the sum of two numbers",invar1+invar2,"n")
print("ENTER ANY TWO NUMBER")
a=input()
b=input()
print("ADDITION =",int(a) + int(b))
U too good bro
X = int( input (" enter 1st number :"))
Y = int ( input ( "enter 2nd number : "))
Print(x+y)
love you you so much
thanks for giving this knowledge
sir please help its not working
print(*"Hello World")
#print this
Num1 = int(input('enter the first number: n'))
Num2 = int(input('enter the second number: n'))
Sum = Num1 + Num2
Print("the sum of", Num1, "and" Num2, "is: n", Sum)
#Thankeww Soo Much ❣️ for this motivation carry bhai ♥️
Thanks bro for this great tutorial
ye apke concatenation m 54 32 aur hello world 32 k beech m space kaise aa raha yaha to space ni aa raha
Love you bro
x = int(input('enter a number: '))
y = int(input('enter a number: '))
op = (input('enter operater: '))
if(op=='+'):
print(x + y)
elif(op=='-'):
print(x – y)
elif(op=='*'):
print(x * y)
elif(op=='/'):
print(x / y)
else:
print('wrong operator')
Simple calculator with python.
Bilkul mast
NameError: name ‘rahat’ is not defined?
Please increase the Font size
print("enter your number")
inpnum = input()
print("enter your number2")
inpnum2 =input()
print(int(inpnum)+int(inpnum2))
Sir print(num1+num2)
I am really very sorry sir that I am starting this tutorial so late as I am just in class 9th now and I hv came to be known about python presently. sir I am working on python 3.7.6. I am sending you my code so please tell whether this is right or not.
print("This is a python calculator for addition only")
print("Enter your 1st number ", end=" – ")
inpnum=input()
print("Enter your 2nd number", end=" – ")
inpnum2=input()
print("your answer=", (int(inpnum)+int(inpnum2)))
This worked completely right for me. You teach very well.
Thank you
print("enter first number")
print("enter second number")
inpnum1 = input()
inpnum2 = input()
print("your total is",int(inpnum1)+int(inpnum2))
print("enter your first number")
inpnum1 = input()
print("enter your second number")
inpnum2 = input()
print("the addition of two number is:",int(inpnum1) + int(inpnum2))
var1=30
var2=40
print(10* str(var1+var2)) — how to print 10 times 70 in new lines please reply
Harry, instead of typecasting, cant we simply change the value from var to int ?
print("Welcome To Calculator")
print("Enter Your First Number")
inpnum1= input()
print("Enter Your Second Number")
inpnum2= input()
print("The Answer Is",int(inpnum1)+int(inpnum2))