Variables, Datatypes and Typecasting | Python Tutorials For Absolute Beginners In Hindi #7 | Video



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

READ ALSO:  Best Strategy Browser Games in 2018

►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

READ ALSO:  Python Complete Course for Beginners || Python for Data Science - Part 1 | Video

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

Source

29 Comments

  1. print("Enter the two number for addition:")

    numinput1= input()

    numinput2= input()

    print("Your answer is",int(numinput1)+int(numinput2))

  2. 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))

  3. 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")

  4. 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 ♥️

  5. 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.

  6. 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

  7. print("enter first number")

    print("enter second number")

    inpnum1 = input()

    inpnum2 = input()

    print("your total is",int(inpnum1)+int(inpnum2))

  8. 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))

  9. 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))

Comments are closed.