Created
January 9, 2021 21:32
-
-
Save JayantGoel001/a798bff9d45b262ecc48c3be777c7b64 to your computer and use it in GitHub Desktop.
Creating A Progress Bar using tqdm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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