@@LearningLad yeah no problem, from that vid alone u gained a sub from me, ur vids are great. I just started coding and I helped a lot so like I said keep it up.
I like how you explained it precisely and directly - just like the language used. I don't know much about programming, especially with Python language, I've only ever read about this language and is learning its 'semantics'. The sample program was simple so there comes my 'awe' with you explaining the details about declaring variables, etc.
I know this comment is very late but i was really struggling on my homework and you have answered my python dreams, thank you so much for explaining it so well and precise. Just wanted to thank you for making the best python video out there 👍
print("Select The operation by typing the number next to the operation") print("1.Addittion") print("2.Subtraction") print("3.Multiplication") print("4.division") print("5.Exponent") print("6.Reminder") operation=input("Hey what operation do you wanna do today ") if operation == "1": a=float(input("First Number ")) b=float(input("Second Number ")) plus=a+b print('sum =',+plus) elif operation == "2": a=float(input("First Number ")) b=float(input("Second Number ")) plus=a-b print('sum =',+plus) elif operation == "3": a=float(input("First Number ")) b=float(input("Second Number ")) plus=a*b print('sum =',+plus) elif operation == "4": a=float(input("First Number ")) b=float(input("Second Number ")) plus=a/b print('sum =',+plus) elif operation == "5": a=float(input("First Number ")) b=float(input("Second Number ")) plus=a**b print('sum =',+plus) elif operation == "6": a=float(input("First Number ")) b=float(input("Second Number ")) plus=a//b print('sum =',+plus) else: print("invalid Entry") print("have a nice day") this was my code
@@LearningLad yeah thanks i asked by It teacher and corrected it and anyways thank u by this video i was successfully be to make temperature calculator also
I wish everyone could do coding tutorials like you, keep it up man
Thank you 😊
@@LearningLad yeah no problem, from that vid alone u gained a sub from me, ur vids are great. I just started coding and I helped a lot so like I said keep it up.
I like how you explained it precisely and directly - just like the language used. I don't know much about programming, especially with Python language, I've only ever read about this language and is learning its 'semantics'. The sample program was simple so there comes my 'awe' with you explaining the details about declaring variables, etc.
Thank you
Keep learning :)
This was very useful! I like that you explain things in a very easy to understand way, yet not slow like some other tutorials!
I've been learning C and C++ for a while and I realized pyhon is much much easier than C.BTW love your tutorial videos.
Keep learning :)
Python is the easiest one in all high level language I am in 7th standard and i know python😁
I know this comment is very late but i was really struggling on my homework and you have answered my python dreams, thank you so much for explaining it so well and precise. Just wanted to thank you for making the best python video out there 👍
glad my video helped you :)
You are legend sir ❤️. Very well explained
Thank you so much Sir 😊🙏I was getting error many times while solving But, finally This video came to help me as a suggestion... ⚡
Pleasure
nice tutorial for python to implement a simple calculator
thanks
You did a very good job explaining the calculators.
thanks
Thank you so much for this tutorial. This helped me with an assignment that I need help on with making a calculator using python.
You're very welcome!
do u you have soft copy ?
I remember using this tutorial when I first started python
1 yr ago
Yea I did the code 4th July 2022
Tomorrow is gcse Spanish speaking
Hopefully went well 😅
Thx u so much Ur a legend. U helped me to do my project if not u I’m done
Glad I could help
You helped a lot to make my presentation😂 thanks
Glad I could help!
Thank you, I learn so much from this video :)
You are so welcome!
Thanks you very much sir!❤️👍🙏
Most welcome
Well explained bro thank you😍
Welcome 😊
great explainetion
i like ur tutorials man u are the best :)
Glad you like them!
You are a LEGEND 🔥
Bro for looping the program which key u have use at the end to put all the program inside the loop
11:01 how did you move the code lil back?
ctrl + ]
your very good thanks
most welcome :)
print("Select The operation by typing the number next to the operation")
print("1.Addittion")
print("2.Subtraction")
print("3.Multiplication")
print("4.division")
print("5.Exponent")
print("6.Reminder")
operation=input("Hey what operation do you wanna do today ")
if operation == "1":
a=float(input("First Number "))
b=float(input("Second Number "))
plus=a+b
print('sum =',+plus)
elif operation == "2":
a=float(input("First Number "))
b=float(input("Second Number "))
plus=a-b
print('sum =',+plus)
elif operation == "3":
a=float(input("First Number "))
b=float(input("Second Number "))
plus=a*b
print('sum =',+plus)
elif operation == "4":
a=float(input("First Number "))
b=float(input("Second Number "))
plus=a/b
print('sum =',+plus)
elif operation == "5":
a=float(input("First Number "))
b=float(input("Second Number "))
plus=a**b
print('sum =',+plus)
elif operation == "6":
a=float(input("First Number "))
b=float(input("Second Number "))
plus=a//b
print('sum =',+plus)
else:
print("invalid Entry")
print("have a nice day")
this was my code
thanks man keep it up
Appreciate it!
What about UI... how wd that be designed and the this programming linked to it
what about making a calculator that reads the operator the user inputs instead of asking them?
What if we want to do more than just two numbers, how would we do that?
Please make a video on calculator using tkinter tools 🛠 🧰 and include buttons
Will ty :)
How did he shift them to the right after putting while
Thank you
most welcome :)
You explained it well but it's not easy for a person who just started
thank you :)
Well explained,I code this same sample but it keep on asking input num1 after the input,I run the code it displayed error 😫😫
what if i enter wrong number ex. 8 the result would be error but i want it to make me try again without refreshing it what should i add with it?
and where do u typing code on?
visual studio code
can you do exponents?
yes you can :)
@@LearningLad I did exponents
what Python software you use, man?
Sir I want another option to enter another choice at run time instead of running the program again again please give me solution
can you keep a key board cam so we can see how and what your typing. Please try it
i get a syntax error with this. elif choice == "2":
Whats that software
Thanks
Pleasure
I wrote the exam same program in Atom on MAC, but it is only returning Invalid choice and skipping the rest of the code
Hey please talk about whitehatjr
Nothing much to talk.
People should think before purchasing :)
please can you explain the functions in c?
Oh my god It work s I tried to perform calculations with 0 and it said wrong BTW there ae so typos in the code
Thax
its showing syntax error here print(num1, "+", num2 "=", (num1+num2))
pls.. help me. I have made the same calculator in python but now i want to make it via VS code
After num2 add a comma
@@LearningLad yeah thanks i asked by It teacher and corrected it
and anyways thank u
by this video i was successfully be to make temperature calculator also
Can I ask po? What IDE are you using po? Hehe
Hello multiplication spelling is wrong
I'm getting print(num1, "+", num2, "=", (num1+num2))
Name Error : name 'num1' is not defined
Guys theirs is a syntax error of the spelling of multiplication