python-tqdm進度條

經過tqdm庫能夠打造本身的進度條使用

1. pip安裝python

pip install tqdm --trusted-host pypi.douban.com

2.使用對象

from time import sleep
from tqdm import tqdm
# 這裏一樣的,tqdm就是這個進度條最經常使用的一個方法
# 裏面存一個可迭代對象
for i in tqdm(range(1, 500)):
 # 模擬你的任務
 sleep(0.01)

  

3.效果展現  blog

相關文章
相關標籤/搜索