When I was getting started with Python I loved writing Tkinter GUIs. At first they felt really complicated because the tutorial I was following wasn't very good. Even the hello world example had a ...
Tkinter is a wrapper around a GUI toolkit called Tk. It's usually used through a language called Tcl, but tkinter allows us to use Tcl and Tk through Python. This means that we can use Tcl's libraries ...
So far we have seen labels, buttons, images, etc in Python’s built-in toolkit Tkinter. With any of the widgets, we were using a method called pack(). And if you are like me you would love to explore ...
Why Do You Need To Set Options Anyway? Well, imagine you’ve got a button or label, and you want it to say something cool like, “Hello, World!” or display an image or have a specific font style. To ...