mirror of
https://github.com/balkian/balkian.github.com.git
synced 2024-11-14 07:32:28 +00:00
453 B
453 B
title | date | tags | |
---|---|---|---|
Progress bars in python | 2016-09-28 18:47:00 |
|
tqdm is a nice way to add progress bars in the command line or in a jupyter notebook.
from tqdm import tqdm
import time
for i in tqdm(range(100)):
time.sleep(1)