質問編集履歴
2
関数呼び出しインデント修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -25,7 +25,7 @@
|
|
25
25
|
time.sleep(0.1)
|
26
26
|
bar2.update(1)
|
27
27
|
|
28
|
-
|
28
|
+
test()
|
29
29
|
```
|
30
30
|
### コンソール表示
|
31
31
|
|
1
import文追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,6 +11,9 @@
|
|
11
11
|
```python
|
12
12
|
■tqdmtest.py
|
13
13
|
|
14
|
+
import time
|
15
|
+
from tqdm import tqdm
|
16
|
+
|
14
17
|
def test():
|
15
18
|
bar1 = tqdm(range(10), desc="bar1")
|
16
19
|
for i in range(10):
|