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]
#The following is omitted
Although it is not such an error, the result is different from the original one. What's wrong?
Recommended Posts