Skip to content

Instantly share code, notes, and snippets.

@JayantGoel001
Created January 9, 2021 21:32
Show Gist options
  • Save JayantGoel001/a798bff9d45b262ecc48c3be777c7b64 to your computer and use it in GitHub Desktop.
Save JayantGoel001/a798bff9d45b262ecc48c3be777c7b64 to your computer and use it in GitHub Desktop.
Creating A Progress Bar using tqdm
from tqdm import tqdm, trange
import time
for i in tqdm(range(10)):
time.sleep(1)
for i in trange(10):
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment