File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -1204,6 +1204,19 @@ pyplot.savefig(<filename>, transparent=True)
1204
1204
```
1205
1205
1206
1206
1207
+ Progress Bar
1208
+ ------------
1209
+ ``` python
1210
+ # $ pip3 install tqdm
1211
+ from tqdm import tqdm
1212
+ from time import sleep
1213
+ for i in tqdm(range (100 )):
1214
+ sleep(0.02 )
1215
+ for i in tqdm([1 , 2 , 3 ]):
1216
+ sleep(0.2 )
1217
+ ```
1218
+
1219
+
1207
1220
Table
1208
1221
-----
1209
1222
#### Prints CSV file as ASCII table:
@@ -1464,19 +1477,6 @@ def tracer(func):
1464
1477
```
1465
1478
1466
1479
1467
- Progress Bar
1468
- ------------
1469
- ``` python
1470
- # $ pip3 install tqdm
1471
- from tqdm import tqdm
1472
- from time import sleep
1473
- for i in tqdm(range (100 )):
1474
- sleep(0.02 )
1475
- for i in tqdm([1 , 2 , 3 ]):
1476
- sleep(0.2 )
1477
- ```
1478
-
1479
-
1480
1480
Basic Script Template
1481
1481
---------------------
1482
1482
``` python
You can’t perform that action at this time.
0 commit comments