• Post category:StudyBullet-7
  • Reading time:4 mins read


Build Desktop Applications with Python

What you will learn

Setup Python Development Environment

Create amazing GUIs with Python’s built-in Tkinter module

Build a Currency Converter GUI App

Build a Music Player GUI App

Create and activate virtual environment

Create Python Modules

Description

Python is a multi-domain, interpreted programming language. It is a widely used general-purpose, high-level programming language. It is often used as a scripting language because of its forgiving syntax and compatibility with a wide variety of different eco-systems. Its flexible syntax enables developers to write short scripts while at the same time, they can use object-oriented concepts to develop very large projects.

Tkinter is the de facto way in Python to create Graphical User interfaces (GUIs) and is included in all standard Python Distributions. In fact, it’s the only framework built into the Python standard library.

This Python framework provides an interface to the Tk toolkit and works as a thin object-oriented layer on top of Tk. The Tk toolkit is a cross-platform collection of β€˜graphical control elements’, aka widgets, for building application interfaces.


Get Instant Notification of New Courses on our Telegram channel.


Tkinter module provides Python users with a simple way to create GUI elements using the widgets found in the Tk toolkit. Tk widgets can be used to construct buttons, menus, data fields, etc. in a Python application. Once created, these graphical elements can be associated with or interact with features, functionality, methods, data or even other widgets.

Tkinter provides various controls, such as buttons, labels and text boxes used in a GUI application. These controls are commonly called widgets.

English
language

Content

Python Setup

Introduction
Python installation on Windows
Python installation on Macs
Installing text editor
Introduction to tkinkter
Creating virtual environment on Windows
Activating virtual environment of Windows

Python GUI Currency Converter

What we will build
Project design
Creating python file
Building the program : part 1
Building the program : part 2
Building the program : part 3
Building the program : part 4
Building the program : part 5
Testing the program

Python GUI MP3 Music Player

What we will create
Project design
Building the app: part 1
Building the app: part 2
Building the app: part 3
Building the app: part 4
Testing the app