Where do we go from here?
If you are interested in digging deeper into the world of GUIs, then we would like to offer the following suggestions.
The turtle module
The turtle
module is an extended reimplementation of the eponymous module from the Python standard distribution up to version Python 2.5. It's a very popular way to introduce children to programming.
It's based on the idea of an imaginary turtle starting at the center of a Cartesian plane. You can programmatically command the turtle to move forward and backward, rotate, and so on; by combining all the possible moves, all sorts of intricate shapes and images can be drawn.
It's definitely worth checking out, if only to see something different.
wxPython, Kivy, and PyQt
After you have explored the vastness of the tkinter
realm, we would suggest you explore other GUI libraries: wxPython (https://www.wxpython.org/), PyQt (https://www.riverbankcomputing.com/software/pyqt/), and Kivy (https...