- tqdm
Te quiero demasiado. Instantly make your loops show a smart progress meter.
import time
text=''
for char in tqdm(['a','b','c','d']):
time.sleep(0.25)
text=text+char
>>>
100%|██████████| 4/4 [00:01<00:00, 3.96it/s]
'Basic Python' 카테고리의 다른 글
TypeError : Can't instantiate abstract class with abstract method (0) | 2022.06.29 |
---|---|
title, items (0) | 2022.06.29 |
union, intersection (0) | 2022.03.10 |
swapcase (0) | 2021.12.22 |
@ (0) | 2021.11.15 |