LoginSignup
0
0

More than 5 years have passed since last update.

Python tqdm について。

Posted at
filename.rb
>>> from tqdm import tqdm

>>> import time

>>>for i in tqdm(range(100)):
    time.sleep(0.01)



  0%|          | 0/100 [00:00<?, ?it/s]
  6%|6         | 6/100 [00:00<00:01, 59.16it/s]
 12%|#2        | 12/100 [00:00<00:01, 59.38it/s]
 19%|#9        | 19/100 [00:00<00:01, 59.75it/s]
 26%|##6       | 26/100 [00:00<00:01, 59.99it/s]
 32%|###2      | 32/100 [00:00<00:01, 59.98it/s]
 38%|###8      | 38/100 [00:00<00:01, 57.21it/s]
 44%|####4     | 44/100 [00:00<00:01, 55.98it/s]
 #以下略

というようなエラーではないのですが、本来とは違う結果が出力されます。
どこが間違っているのでしょうか?

0
0
1

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
0
0