欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

180207 python tqdm进度条的使用

程序员文章站 2024-02-02 11:13:04
...

python的Tqdm模块
180207 python tqdm进度条的使用

  • Code One
from tqdm import tqdm
from time import sleep
for i in tqdm(range(1000)):  
     sleep(0.1) 
     pass 
  • Code Two
from tqdm import tqdm
from time import sleep
import numpy as np
a = np.arange(50)
for i in tqdm(a): # enumerate(a) = tqdm(a):
     sleep(0.1)

180207 python tqdm进度条的使用

  • Code 3
    混合使用 enumerate(tqdm(data))
from time import sleep
import numpy as np
data = np.arange(50)
for idx,item in enumerate(tqdm(data)): # enumerate(a) = tqdm(a):
     print(idx, item)