Skip to content
Phillip Best edited this page Mar 7, 2019 · 2 revisions

Welcome to the gui-development-tkinter-course wiki!

Test Projects

Calculator App

A potential option for getting the students comfortable with more elaborate grid positioning, and triggering events with arguments. This project also offers the opportunity to demonstrate iterating over items in a Frame, or the root window. e.g.

for child in buttons.winfo_children():
    child.grid_configure(padx = 5, pady = 5)

The eventual goal would be to create a simple but functional calculator that perhaps shows a small number of past calculation results as well.

Clone this wiki locally