2023-07-12 23:26:55 +08:00

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)