(2) Create App, Refactoring Procedural Code to Object Oriented Code, in Python using Tkinter

Опубликовано: 12 Октябрь 2024
на канале: Endezyaro
158
4

Let's start with the Refactoring Procedural Code into Object Oriented Code

The topic is how to create a simple graphical user interface (GUI) application in python using Tkinter?
The example is to create a simple form (firstname, lastname, gender, birth date, email address, street, zip code, city, country)

Python has a huge number of GUI frameworks (or toolkits) available for it.
This video focuses on the tkinter package, the name Tkinter comes from "TK interface".
-Tkinter is a Python binding to the Tcl/Tk GUI toolkit. It is the standard -Python interface to the Tcl/Tk GUI toolkit.
-Tkinter is the standard GUI library for deploying Python applications.
-Tkinter is open source.
-Tkinter is free software released under a Python license, so it's free for any commercial use.
-Tkinter is cross-platform, so the same code works on Windows, macOS and Linux.
I use PyCharm as the integrated development einvironment (IDE).
Enjoy watching and learning :-)

Create GUI Application in Python using Tkinter, a simple form:
   • (1) Create GUI Application in Python ...