I wish everyone could do coding tutorials like you, keep it up man
@LearningLad3 жыл бұрын
Thank you 😊
@jameswatson89073 жыл бұрын
@@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.
@marifer69183 жыл бұрын
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.
@LearningLad3 жыл бұрын
Thank you Keep learning :)
@TheEpicplushgod2 жыл бұрын
This was very useful! I like that you explain things in a very easy to understand way, yet not slow like some other tutorials!
@vishalrathore85533 жыл бұрын
You are legend sir ❤️. Very well explained
@aniketswarnakar66093 жыл бұрын
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.
@LearningLad3 жыл бұрын
Keep learning :)
@pratibha82163 жыл бұрын
Python is the easiest one in all high level language I am in 7th standard and i know python😁
@Emily-sx2io2 жыл бұрын
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 👍
@LearningLad2 жыл бұрын
glad my video helped you :)
@godzilla8480 Жыл бұрын
Thx u so much Ur a legend. U helped me to do my project if not u I’m done
@LearningLad Жыл бұрын
Glad I could help
@durveshmahajan80972 жыл бұрын
Thank you so much Sir 😊🙏I was getting error many times while solving But, finally This video came to help me as a suggestion... ⚡
@LearningLad2 жыл бұрын
Pleasure
@bibekmishra20192 жыл бұрын
nice tutorial for python to implement a simple calculator
@LearningLad2 жыл бұрын
thanks
@chevarielammar84712 жыл бұрын
Thank you, I learn so much from this video :)
@LearningLad2 жыл бұрын
You are so welcome!
@pratibha82163 жыл бұрын
You helped a lot to make my presentation😂 thanks
@LearningLad3 жыл бұрын
Glad I could help!
@ambrosethomas15362 жыл бұрын
You did a very good job explaining the calculators.
@LearningLad2 жыл бұрын
thanks
@dedicategrinder88 Жыл бұрын
I remember using this tutorial when I first started python
@dedicategrinder887 ай бұрын
1 yr ago Yea I did the code 4th July 2022 Tomorrow is gcse Spanish speaking Hopefully went well 😅
@DifferentThinker2 жыл бұрын
Well explained bro thank you😍
@LearningLad2 жыл бұрын
Welcome 😊
@whatsnext_9502 жыл бұрын
i like ur tutorials man u are the best :)
@LearningLad2 жыл бұрын
Glad you like them!
@RohitDhurve-b3i21 күн бұрын
thanks man keep it up
@LearningLad20 күн бұрын
Appreciate it!
@jackoblot3 жыл бұрын
Thank you so much for this tutorial. This helped me with an assignment that I need help on with making a calculator using python.
@LearningLad3 жыл бұрын
You're very welcome!
@sumanpujari7979 ай бұрын
do u you have soft copy ?
@_digi_arts35333 жыл бұрын
Thanks you very much sir!❤️👍🙏
@LearningLad3 жыл бұрын
Most welcome
@shawonzaman84092 жыл бұрын
great explainetion
@hope_ytt2 жыл бұрын
You are a LEGEND 🔥
@sahashellarawa65612 жыл бұрын
your very good thanks
@LearningLad2 жыл бұрын
most welcome :)
@roshanrajasekaran30982 жыл бұрын
11:01 how did you move the code lil back?
@roshanrajasekaran30982 жыл бұрын
ctrl + ]
@jyothinayak85872 жыл бұрын
Thank you
@LearningLad2 жыл бұрын
most welcome :)
@roshangowda10442 жыл бұрын
Bro for looping the program which key u have use at the end to put all the program inside the loop
@kamranejazchatha2 жыл бұрын
What about UI... how wd that be designed and the this programming linked to it
@Ten.Sheepa3 жыл бұрын
what about making a calculator that reads the operator the user inputs instead of asking them?
@nate31142 жыл бұрын
How did he shift them to the right after putting while
@UcheTechs3 жыл бұрын
Thanks
@LearningLad3 жыл бұрын
Pleasure
@nadiaj29702 жыл бұрын
What if we want to do more than just two numbers, how would we do that?
@paulfelix84152 жыл бұрын
Well explained,I code this same sample but it keep on asking input num1 after the input,I run the code it displayed error 😫😫
@yassin59042 жыл бұрын
You explained it well but it's not easy for a person who just started
@LearningLad2 жыл бұрын
thank you :)
@anushag17163 жыл бұрын
Please make a video on calculator using tkinter tools 🛠 🧰 and include buttons
@LearningLad3 жыл бұрын
Will ty :)
@kingsssss36353 жыл бұрын
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?
@Rxtfoxy2 жыл бұрын
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
@gabagoooooooool2 жыл бұрын
what Python software you use, man?
@none-bn8sr Жыл бұрын
can you do exponents?
@LearningLad Жыл бұрын
yes you can :)
@none-bn8sr Жыл бұрын
@@LearningLad I did exponents
@v4mp1r3gurl62 жыл бұрын
and where do u typing code on?
@LearningLad2 жыл бұрын
visual studio code
@nkz13112 жыл бұрын
i get a syntax error with this. elif choice == "2":
@nitabhoi36082 жыл бұрын
Sir I want another option to enter another choice at run time instead of running the program again again please give me solution
@rokkamcr3 жыл бұрын
can you keep a key board cam so we can see how and what your typing. Please try it
@romeyanttal35242 жыл бұрын
Thax
@ElpresadorsBrother2 жыл бұрын
I wrote the exam same program in Atom on MAC, but it is only returning Invalid choice and skipping the rest of the code
@digitalartzz43013 жыл бұрын
its showing syntax error here print(num1, "+", num2 "=", (num1+num2))
@digitalartzz43013 жыл бұрын
pls.. help me. I have made the same calculator in python but now i want to make it via VS code
@LearningLad3 жыл бұрын
After num2 add a comma
@digitalartzz43013 жыл бұрын
@@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
@manfromsl2 жыл бұрын
Whats that software
@sonikarthik19182 жыл бұрын
I'm getting print(num1, "+", num2, "=", (num1+num2)) Name Error : name 'num1' is not defined
@yusufkhusanovic12663 жыл бұрын
please can you explain the functions in c?
@OG_CK20183 жыл бұрын
Hey please talk about whitehatjr
@LearningLad3 жыл бұрын
Nothing much to talk. People should think before purchasing :)
@earthmix_pebaca_brightwin40763 жыл бұрын
Can I ask po? What IDE are you using po? Hehe
@rokkamcr3 жыл бұрын
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
@orbit58593 жыл бұрын
Hello multiplication spelling is wrong
@bsjha2552 Жыл бұрын
Guys theirs is a syntax error of the spelling of multiplication