LoginSignup
2
3

More than 1 year has passed since last update.

tqdmのプログレスバー長すぎィ!!(長さ変更)

Last updated at Posted at 2021-11-26

長すぎるだろ…

too_long_tqdm.png

短くします

参考:GitHub Issue #585

for file_name in tqdm(files):
    # 何らかの処理

# tqdm's bar_format
short_progress_bar="{l_bar}{bar:10}{r_bar}{bar:-10b}"

for file_name in tqdm(files, bar_format=short_progress_bar):
    # 何らかの処理

結果

Yeah! That's exactly what I've been wanting PROGRESS BAR!!!
shot_tqdm.png

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3