Created
October 13, 2020 01:03
-
-
Save adamoudad/4638fdda5af4e643e0c97118857371c4 to your computer and use it in GitHub Desktop.
This file contains 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 | |
lst = [1, 3, 5, 7, 11] | |
for element in tqdm(lst): | |
sleep(0.1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment