How can I archive this?
from tqdm import tqdm
for link in tqdm(links):
try:
#Do Some Stff
except:
pass
print("Done:")
Result:
100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 4/4 [00:00<00:00, 111.50it/s]
Done:
100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 4/4 [00:00<00:00, 111.50it/s]
Done:
Expected Result (Showing the status bar but don't print it after into the console)
Done:
Done: