Browse Source

Moved progress bar

pull/9/head
Jure Šorn 6 years ago
parent
commit
1738461e6c
1 changed files with 13 additions and 13 deletions
  1. 26
      README.md

26
README.md

@ -1204,6 +1204,19 @@ pyplot.savefig(<filename>, transparent=True)
``` ```
Progress Bar
------------
```python
# $ pip3 install tqdm
from tqdm import tqdm
from time import sleep
for i in tqdm(range(100)):
sleep(0.02)
for i in tqdm([1, 2, 3]):
sleep(0.2)
```
Table Table
----- -----
#### Prints CSV file as ASCII table: #### Prints CSV file as ASCII table:
@ -1464,19 +1477,6 @@ def tracer(func):
``` ```
Progress Bar
------------
```python
# $ pip3 install tqdm
from tqdm import tqdm
from time import sleep
for i in tqdm(range(100)):
sleep(0.02)
for i in tqdm([1, 2, 3]):
sleep(0.2)
```
Basic Script Template Basic Script Template
--------------------- ---------------------
```python ```python

|||||||
100:0
Loading…
Cancel
Save