PANDAS ITERROWS TQDM

for index, row in tqdm(df.iterrows(), total=df.shape[0]):
   print("index",index)
   print("row",row)
FishBrawler