ダメです。
インストール
pipでインストールする。
jupyterでやるとなんかうまくいかないこともあるらしい
from tqdm.notebook import tqdm
ってやるとなんとかなるんだってさ
名前を付ける
from tqdm.notebook import tqdm tqdm1 = tqdm(range(334)) for i in tqdm1 : tqdm1.set_description('ExecutorA') pass tqdm2 = tqdm(range(334)) for i in tqdm2: tqdm2.set_description('ExecutorB') pass
こうなる
見方
< の左側:現在までの経過時間< の右側:完了までの予想時間