Browse Source

Br

pull/3/head
Jure Šorn 6 years ago
parent
commit
6da3f52731
1 changed files with 8 additions and 6 deletions
  1. 14
      README.md

14
README.md

@ -727,6 +727,8 @@ def eval_(node):
-5.0 -5.0
``` ```
<br><br><br><br>
<hr>
Libraries Libraries
========= =========
@ -894,9 +896,9 @@ class Progressbar():
``` ```
```python ```python
steps = 100
bar = Progressbar(steps)
for i in range(steps):
STEPS = 100
bar = Progressbar(STEPS)
for i in range(STEPS):
<code> <code>
bar.tick() bar.tick()
``` ```
@ -905,9 +907,9 @@ for i in range(steps):
```python ```python
# pip3 install progress # pip3 install progress
from progress.bar import Bar from progress.bar import Bar
steps = 100
bar = Bar('Processing', max=steps)
for i in range(steps):
STEPS = 100
bar = Bar('Processing', max=STEPS)
for i in range(STEPS):
<code> <code>
bar.next() bar.next()
bar.finish() bar.finish()

Loading…
Cancel
Save