Skip to content

Instantly share code, notes, and snippets.

@chinmay29hub
Created June 22, 2022 14:11
Show Gist options
  • Save chinmay29hub/9145bec80891e9de942ba13c4e392cf2 to your computer and use it in GitHub Desktop.
Save chinmay29hub/9145bec80891e9de942ba13c4e392cf2 to your computer and use it in GitHub Desktop.
tqdm
from tqdm import tqdm
import time
for i in tqdm(range(20), desc = 'tqdm() Progress Bar'):
time.sleep(0.1)
# some tasks here
# some more operations here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment