Python Program to Make a Simple Calculator | Complete Tutorial

  Рет қаралды 61,755

WsCube Tech

WsCube Tech

Жыл бұрын

In this video, learn Python Program to Make a Simple Calculator | Complete Tutorial. Find all the videos of the 100+ Python Programs Course in this playlist: • Python Program to Add ...
GitHub Link: github.com/wscubetech-india/P...
💎 Get Access to Premium Videos and Live Streams: / @wscubetech
WsCube Tech is a leading Web, Mobile App & Digital Marketing company, and institute in India.
We help businesses of all sizes to build their online presence, grow their business, and reach new heights.
👉For Digital Marketing services (Brand Building, SEO, SMO, PPC, SEM, Content Writing), Web Development and App Development solutions, visit our website: www.wscubetech.com/
👉Want to learn new skills and improve existing ones with in-depth and practical sessions? Enroll in our advanced online courses now and make yourself job-ready: courses.wscubetech.com/s/store
All the courses are job-oriented, up-to-date with the latest algorithms and modules, fully practical, and provide you hands-on projects.
👉 Want to learn and acquire skills in English? Visit WsCube Tech English channel: bit.ly/2M3oYOs
📞 For more info about the courses, call us: +91-7878985501, +91-9269698122
✅ CONNECT WITH THE FOUNDER (Mr. Kushagra Bhatia) -
👉 Instagram - / kushagrabhatiaofficial
👉 LinkedIn - / kushagra-bhatia
Connect with WsCube Tech on social media for the latest offers, promos, job vacancies, and much more:
► Subscribe: bit.ly/wscubechannel
► Facebook: / wscubetech.india
► Twitter: / wscubetechindia
► Instagram: / wscubetechindia
► LinkedIn : / wscubetechindia
► KZbin: / wscubetechjodhpur
► Website: wscubetech.com
-------------------------------------| Thanks |--------------------------
#python #pythontutorials #pythonprogramming

Пікірлер: 35
@wscubetech
@wscubetech Жыл бұрын
😎Hey, thanks for watching! We’d love to know your thoughts/doubts here in the comments. 👉For professional self-paced certification courses (pre-recorded), visit: bit.ly/Pre-Recorded-Course 👉Don’t forget to SUBSCRIBE to our channel for more such videos & valuable content: bit.ly/KZbin-WsCubeTech
@71FLIX
@71FLIX 5 ай бұрын
num1=int(input("First number:")) num2=int(input("Second number:")) opr=input("Enter the operator(+, -, *, /)") if opr =="+": print(num1+num2) if opr =="-": print(num1-num2) if opr =="*": print(num1*num2) if opr =="/": print(num1/num2) if opr!='+' and opr!='-' and opr!='*' and opr!='/': print('Vul lekhecho')
@edforthweasley5454
@edforthweasley5454 8 ай бұрын
Thank you for a wonderful process of coding.
@gaganxedits
@gaganxedits Ай бұрын
thnku mam it worked
@Mister.poor.innocent.5471
@Mister.poor.innocent.5471 2 ай бұрын
I am weak in programming and recently learning it .
@U_ARMY
@U_ARMY 4 ай бұрын
Thank You so Much. Helped a lot. Cleared all my doubts.👍👍.
@satishdas6910
@satishdas6910 Жыл бұрын
It will be more beautiful by adding the while loop for infinite loop..
@ramaagaya2427
@ramaagaya2427 Жыл бұрын
Thanks
@mystudy8802
@mystudy8802 7 ай бұрын
num1 = int(input("Enter first number :")) operator = input("Enter the (-,+,*,/) :") num2 = int(input("Enter secound number :")) if operator == "-": print("Substraction of num1 and num2 :",num1 - num2) elif operator == "+": print("Addition of num1 and num2 :",num1 + num2) elif operator == "*": print("Multiplication of num1 and num2 :",num1 * num2) elif operator == "/": print("Division of num1 and num2 :",num1 / num2) else: print("Enter the right operator")
@TechVinu1
@TechVinu1 Жыл бұрын
Nice 🤗
@abdulbasit9364
@abdulbasit9364 3 ай бұрын
Tysm ❤
@beyolgaming9706
@beyolgaming9706 Жыл бұрын
Awesome
@RASEDGAMER0.9
@RASEDGAMER0.9 2 ай бұрын
Thank you🥰🥰🥰
@alldelete6668
@alldelete6668 Жыл бұрын
Nice video
@Aai-Music
@Aai-Music Жыл бұрын
Python ka use karke website Bnane ka ek singal video bnao please
@DreamexxHh
@DreamexxHh 2 ай бұрын
Yes I want
@mruk616
@mruk616 Жыл бұрын
Thanks You 🙌🏻
@30sachinsharma4
@30sachinsharma4 Жыл бұрын
Guys mine is better x=int(input(" Number --> ")) z=input(" Operation --> ") y=int(input(" Number --> ")) print(x,z,y) if z== "+": print("=",x+y) elif z=="-": print("=",x-y) elif z=="/": print("=",x/y) elif z=="×": print("=",x*y) else: print("put operation like +,-,/,×")
@edforthweasley5454
@edforthweasley5454 8 ай бұрын
Bro really it is looking better but let's see it works or not 😅
@mohammedomersiddiqui4058
@mohammedomersiddiqui4058 3 ай бұрын
I think this is better : print("Simple Calculator") x=int(input(" Enter First Number --> ")) z=input(" Enter Desired Operator --> ") y=int(input(" Enter Second Number --> ")) if z== "+": print("The Sum of ",x,"+",y,"=",x+y) elif z=="-": print("The Diffrence of ",x,"-",y,"=",x-y) elif z=="/": print("The Division of ",x,"/",y,"=",x/y) elif z=="*": print("The Product of ",x,"x",y,"=",x*y) else: print("Invalid Input")
@mohammedomersiddiqui4058
@mohammedomersiddiqui4058 3 ай бұрын
arithmetic error for multiplication, instead of "x" use "*"
@anjani451
@anjani451 Жыл бұрын
Hello 🙏❤️
@helloeveryone6614
@helloeveryone6614 Жыл бұрын
Are didi ye toh hmne bhi bna liya tha isko apk file me kaise convert kre ye btao.
@shivanisaraiya617
@shivanisaraiya617 Жыл бұрын
what we want to calculate an expression like => 120+12-(10*20) how will we calculate that? will you please make tutorial video on that as well?
@juhaeerjayran4246
@juhaeerjayran4246 Жыл бұрын
I guess 120 + 12 - 10**20
@technicalff4681
@technicalff4681 Жыл бұрын
1st view
@mohammedomersiddiqui4058
@mohammedomersiddiqui4058 3 ай бұрын
print("Simple Calculator") x=int(input(" Enter First Number --> ")) z=input(" Enter Desired Operator --> ") y=int(input(" Enter Second Number --> ")) if z== "+": print("The Sum of ",x,"+",y,"=",x+y) elif z=="-": print("The Diffrence of ",x,"-",y,"=",x-y) elif z=="/": print("The Division of ",x,"/",y,"=",x/y) elif z=="*": print("The Product of ",x,"x",y,"=",x*y) else: print("Invalid Input")
@PrachitiKitey-te3xw
@PrachitiKitey-te3xw 8 ай бұрын
Why I am not able to use it when I save the file
@HEADBOYHERE
@HEADBOYHERE 8 ай бұрын
never trust a programmer who code in light mode😅
@yashafwaheed1855
@yashafwaheed1855 6 ай бұрын
​@@heavydrivergaming7831Light aankhon main lagti hai, Dark Theme is more comfortable for eyes, and he means by 'never trust a programmer who uses light theme' is that he is saying that the programmer who uses light theme is blind because it is so bright and affects eyes 😂.
@aniketgaud4816
@aniketgaud4816 2 ай бұрын
agar choice 5 choose kiya tho return code run nh horha invalid print krne k baad
@moviedekhtahu
@moviedekhtahu Жыл бұрын
Code link
@vikramsinghrajawat9268
@vikramsinghrajawat9268 Ай бұрын
Yrr mere toh output me kuch hi nhi aa rha
@naveenkumar651
@naveenkumar651 Ай бұрын
this is not for beginners in the way she is running with the coding as if she has to rush somewhere
@SanSanbiWorldFamous
@SanSanbiWorldFamous 5 ай бұрын
Its showing error
Зу-зу Күлпәш. Стоп. (1-бөлім)
52:33
ASTANATV Movie
Рет қаралды 1,2 МЛН
ХОТЯ БЫ КИНОДА 2 - официальный фильм
1:35:34
ХОТЯ БЫ В КИНО
Рет қаралды 1,7 МЛН
What are DSPs and SSPs? | Differences Explained
1:56
Setupad Team
Рет қаралды 28 М.
Python OOP Tutorial 2: Class Variables
11:41
Corey Schafer
Рет қаралды 1,7 МЛН
Lambda() Function in Python 🐍 with execution 👩‍💻
6:37
Gate Smashers
Рет қаралды 24 М.