Python Tkinter Frame

Last Updated : 17 Mar 2025

Python Tkinter Frame widget is used to organize the group of widgets. It acts like a container which can be used to hold the other widgets. The rectangular areas of the screen are used to organize the widgets to the python application.

Python Tkinter Frame Syntax

The syntax to use the Frame widget is given below.

A list of possible options is given below.

SNOptionDescription
1bdIt represents the border width.
2bgThe background color of the widget.
3cursorThe mouse pointer is changed to the cursor type set to different values like an arrow, dot, etc.
4heightThe height of the frame.
5highlightbackgroundThe color of the background color when it is under focus.
6highlightcolorThe text color when the widget is under focus.
7highlightthicknessIt specifies the thickness around the border when the widget is under the focus.
8reliefIt specifies the type of the border. The default value if FLAT.
9widthIt represents the width of the widget.

Python Tkinter Frame Example

Let us take an example to demonstrate the Tkinter Frame in Python.

Output:

Python Tkinter Frame