PYTHON 12334.pptx AND PYTHON JAVA MYSQLI

mallihashri13 8 views 6 slides Oct 17, 2024
Slide 1
Slide 1 of 6
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6

About This Presentation

IT IS USEFUL


Slide Content

WHAT IS TKINTER ? Tkinter  is a standard  Python GUI (Graphical User Interface) library  that provides a set of tools and widgets to create desktop applications with graphical interfaces . Tkinter is included with most Python installations, making it easily accessible for developers who want to build GUI applications without requiring additional installations or libraries.

Where is Python Tkinter used? Creating windows and dialog boxes Building a GUI for a desktop application Creating custom widgets Adding a GUI to a command-line program

What are Widgets in Tkinter ? Button Checkbutton Entry Label Radiobutton Spinbox Combobox

Fundamental structure of Tkinter program 

GENERAL CODE IN TKINTER from tkinter import * root = Tk () ''' widgets are added here ''' root.mainloop ()
Tags