Adding Progressbar to a Jupyter Lab Notebook2020-02-05 #python #jupyter #machine learning1 pip3 install tqdm --user1 2 3 4 5 6 7 from tqdm import tqdm for i, row in tqdm(df.iterrows(), total=df.shape[0]): ifor_val = something if <condition>: ifor_val = something_else df.at[i,'ifor'] = ifor_val pass