VOOZH about

URL: https://www.geeksforgeeks.org/python/progressbar-widget-in-tkinter-python/

⇱ Progressbar widget in Tkinter | Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Progressbar widget in Tkinter | Python

Last Updated : 30 Jan, 2026

The purpose of this widget is to reassure the user that something is happening. It can operate in one of two modes:

  • determinate mode: the widget shows an indicator that moves from beginning to end under program control.
  • indeterminate mode: the widget is animated so the user will believe that something is in progress. In this mode, the indicator bounces back and forth between the ends of the widget.

Syntax

widget_object = Progressbar(parent, **options)

Determinate mode

Output

👁 gg1

Indeterminate mode

Output

👁 gg2
Comment