I wanted to get used to the python syntax, so I decided to learn tkinter module because it seemed interesting to me. Beeing able to visualize what your code does is pretty awesome.
My mini-projects:
- simple calculator
- air quality checker
- a simple form
- random password generator
- working with a database
- uefa euro 2020: showing team members
install tkinter module
pip install tk
basic program
from tkinter import *
root = Tk()
root.title("my first program")
myLabel = Label(root, text="Some text")
myLabel.grid(row=0, column=0)
root.mainloop()