Continue Building A Simple Calculator App - Python Tkinter GUI Tutorial #6

preview_player
Показать описание
Let's Continue Building A Simple Calculator App. In this video we'll continue to build out our simple calculator app using the stuff we've learned from the previous videos. We'll create the clear button, the add button, and the equal to button functionality in this video.

In this series I'll show you how to create graphical user interfaces for Python with Tkinter. TKinter comes with Python already, so there's nothing to install!

✅ Watch The Other Videos In This Python Playlist:

▶️ See More At:

✅ Join My Facebook Group:

✅ Subscribe To My YouTube Channel:

Take $22 off with coupon code: youtube
Рекомендации по теме
Комментарии
Автор

▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My YouTube Channel:
▶️ See More At: ✅ Join My Facebook Group:

Codemycom
Автор

You're genuine. This is how we code, making mistakes, hoping it runs, too many edited videos making the programmer look perfect, no syntax errors, never a question on how an API works. This should inspire aspiring programmers. Thanks.

josephsevita
Автор

"I'm just making this up as I go, you can tell." Made me laugh. Thank you for the video series this is very helpful and fun!

Gvk
Автор

1:10 On the 13th line you could write 'END' insead of 0 and it'll be working.

meestvn
Автор

Great video, this came in handy for my college project which requires python and Tkinter. Even my college tutor makes many mistakes in his program.

mrunixman
Автор

Hello from Brazil. I decided to learn some python, and I realized that the best way to learn something is use this something in a project. So I opened 10 youtube videos on "how to make a simple calculator with python", and after watching one of you videos I closed all the others. The way you explain things is very interesting, thanks for the amazing tutorials.

helio
Автор

This is the best library introduction series of all time, seriously. The way you present and show things allows us to not only understand it, but to be able to create and implement into our own ideas immediately. Cannot thank you enough for your videos.

markblair
Автор

The best tkinter Tutorial in the youtube.

aminmech
Автор

A really simple way of fixing the calculator number input issue is to change "e.insert(0, number)" to "e.insert(END, number)". This eliminates the need for a "current" variable and the string concatenation

EpicBURN
Автор

We can also create a variable i and pass it in e.insert(i, number) and increment it each time for correct representation

Then while clearing reset the value of i to 0
This worked pretty well

kameenabandar
Автор

I can't believe that I have 170 more amazing videos to watch!

mrawesome
Автор

Dude you are bloody brilliant. I will buy yours courses. Loving this!

daveandpamwilkinson
Автор

To how want's to learn python easy this good chanel لكل من يريد تعلم بايتون هذه القناة افضلل مكان للتعلم.
شكرا كثيرا thanks lot

ikpjchn
Автор

I like your reaction when your code runs! lol

marcmathieutrance
Автор

Best web series I am watching right now

sasitobs
Автор

We may write
a=e.get()
e.insert(len(a), num)

hardikpunj
Автор

You could've used the inbuilt string split method for adding numbers, btw thanks for the great tutorial series

andrejvujic
Автор

Would be interesting which other ideas you guys came up with for doing the math. Maybe we can collect them in this thread.
I used a little different approach and used result = eval(e.get()) for the equal button. The advantage is, that we can see the calculation all the time. Furthermore we can type in a calculation into the text field (which is of course not the aim of this video).

umpalumpa
Автор

Why we should use lambda to execute the command

oujnebz
Автор

Gracias profe, saludos desde Bucaramanga-Colombia

jorgebalagueraespinosa