Creating Widgets

Learn about the different types of widgets in Tkinter.

We'll cover the following...

Widgets in Tkinter

There are fifteen types of widgets in Tkinter, and each has many options, indicated with option=value. This lesson will cover only the most common types and options. For more detail, the official Python docs for Tkinter is an excellent reference.

In the following widget example, we will assume that the window is called top.

  • fr = Frame(parent, option, ...)

    • This is a container for widgets. The
...