0% found this document useful (0 votes)
77 views

Python Tkinter GUIs

The document discusses using the Tkinter framework to build graphical user interfaces in Python. It provides links to example code for basic Tkinter GUIs, including getting names and doing unit conversions. It suggests practicing by modifying the examples, such as adding a middle name field or converting different units, to better understand how GUIs and Tkinter work.

Uploaded by

ziadabdelgayed1
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
77 views

Python Tkinter GUIs

The document discusses using the Tkinter framework to build graphical user interfaces in Python. It provides links to example code for basic Tkinter GUIs, including getting names and doing unit conversions. It suggests practicing by modifying the examples, such as adding a middle name field or converting different units, to better understand how GUIs and Tkinter work.

Uploaded by

ziadabdelgayed1
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Python Programming → Graphical User Interfaces

Tkinter GUI Programming

You will be using the Tkinter framework to program Graphical User Interfaces
(GUI). Tkinter is the standard built-in GUI library for Python. There are more
modern looking and/or cross-platform alternatives such as Kivy, PySide, and PyQt
Python GUI frameworks. Each has advantages and disadvantages. Currently, there
are way more resources and tutorials out there for Tkinter. You can try Kivy or PyQt
if you’d like and are up for a challenge. PyQt vs. Tkinter: Which Should You Choose for Your Next Python
GUI?

A. Click on the link below to get access to replit skeleton code for building your first Tkinter GUI.
https://replit.com/@mrwatsonsst/Python-Tkinter-Basic-GUI-Example-skeleton-code#main.py

Tkinter Names GUI


B. replit → https://replit.com/@mrwatsonsst/Python-Tkinter-Simple-GUI-Get-Names-1

Tkinter Conversion GUI


C. replit → https://replit.com/@mrwatsonsst/Python-Tkinter-Conversion-GUI-template
D. Click on the link below to get access to many links dealing with Tkinter.
Tkinter Help links

Practice/Classwork
1. Add middle name(s) to the Name GUI example and make sure it works; modify the
sizes and colours of the widgets.

2. For the Conversion GUI to do another type of unit conversion and make sure it works.

3. Go through several of the examples in the Tkinter Help Links document and modify
them to get a better understanding of how GUIs and Tkinter work.
https://replit.com/@mrwatsonsst/Python-Tkinter-Build-Basic-GUI-E
xample#main.py

Tkinter GUI Assignment 3U/3C

Tkinter GUI Assignment 4U

Tkinter GUI Assignment 4C

You might also like