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)
12041204```
12051205
12061206
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+
12071220Table
12081221-----
12091222#### Prints CSV file as ASCII table:
@@ -1464,19 +1477,6 @@ def tracer(func):
14641477```
14651478
14661479
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-
14801480Basic Script Template
14811481---------------------
14821482``` python
You can’t perform that action at this time.
0 commit comments