VOOZH about

URL: https://www.geeksforgeeks.org/python/python-create-progress-bar-using-tqdm-module/

⇱ Python - Create progress bar using tqdm module - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python - Create progress bar using tqdm module

Last Updated : 22 Apr, 2020
In this article we will see how to make progress bar with the help of tqdm module. A progress bar is a graphical control element used to visualize the progression of an extended computer operation, such as a download, file transfer, or installation. Sometimes, the graphic is accompanied by a textual representation of the progress in a percent format. Required Modules :
Tqdm : Tqdm package is one of the more comprehensive packages for progress bars with python and is handy for those instances you want to build scripts that keep the users informed on the status of your application.
pip install tqdm
Time : This module provides various time-related functions, it is part of python's standard library.
Example 1: Output :
Example 2: Output :
Example 3:
Output : 👁 Image
Comment
Article Tags: