python循环中tqdm的使用

有些时候我们使用for循环的时候可能会执行很长时间,我们可以使用tqdm来监视for循环执行的进度。

from tqdm import tqdm

for i in tqdm(range(len(df['short_channel_id']))):
    if df['short_channel_id'][i] == df['short_channel_id'][i+1] and df['update_time'][i] == df['update_time'][i+1]:
        df.drop(labels=i,inplace=True)

固定的模式是这样的

from tqdm import tqdm

for i in tqdm(rang(len(???)):
	………………

在问号中填入正常的循环的长度即可
效果如下
在这里插入图片描述

你可能感兴趣的:(各种小问题小技巧)