# pip install tqdmfrom time import sleepfrom tqdm import tqdm# 这里同样的,tqdm就是这个进度条最常用的一个方法# 里面存一个可迭代对象for i intqdm(range(1, 500)):# 模拟你的任务sleep(0.01)sleep(0.5)
# pip install alive-progressfrom alive_progress import alive_barimport time# retrieve your set of itemsitems =range(100)# declare your expected total withalive_bar(len(items))as bar:# iterate as usualfor item in items:# process each itembar() time.sleep(0.1)img