Kemajuan untuk loop python

from tqdm import tqdm

for member in tqdm(members):
    # current contents of your for loop
Tired Toad