Skip to content

Commit 1738461

Browse files
committed
Moved progress bar
1 parent d94f71e commit 1738461

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff 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+
12071220
Table
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-
14801480
Basic Script Template
14811481
---------------------
14821482
```python

0 commit comments

Comments
 (0)