mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-19 09:24:46 +08:00
8 lines
105 B
Python
8 lines
105 B
Python
import time
|
|
from tqdm import tqdm
|
|
|
|
|
|
c = tqdm(range(0, 1000), total=1000)
|
|
for i in c:
|
|
time.sleep(0.1)
|