Unit 5 python
Unit 5 python
Django architecture
Django is based on MVT (Model-View-Template) architecture. MVT is a
software design pattern for developing a web application. Django is an open-
source framework that is used for backend development of web application.
Tkinter Widgets
Tkinter is the GUI library of Python, it provides various controls, such as
buttons, labels and text boxes used in a GUI application. These controls are
commonly called Widgets. The list of commonly used Widgets are
mentioned below –
Widget Description
The Label widget is used to provide a single-line caption for
Label
other widgets. It can also contain images.
Geometry Management
All Tkinter widgets have access to specific geometry management methods,
which have the purpose of organizing widgets throughout the parent widget
area. Tkinter exposes the following geometry manager classes: pack, grid, and
place. Their description is mentioned below –
Widg
et Description