Skip to content

Instantly share code, notes, and snippets.

@ernesthan
Created February 2, 2023 18:16
Show Gist options
  • Save ernesthan/a6ff9c418d2e565effb2d268878812ae to your computer and use it in GitHub Desktop.
Save ernesthan/a6ff9c418d2e565effb2d268878812ae to your computer and use it in GitHub Desktop.
Customise TQDM bar
# https://github.com/tqdm/tqdm
# Search "bar_format"
from tqdm import tqdm
for i in tqdm(range(1_000_000_000), total=1_000_000_000, bar_format = "{desc}: {percentage:.2f}%|{bar}| {n:,}/{total:,} [{elapsed}<{remaining}"):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment