Skip to content

Commit b140848

Browse files
committed
Libraries
1 parent 0fe8be3 commit b140848

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,9 +1624,6 @@ Progress Bar
16241624
```python
16251625
# $ pip3 install tqdm
16261626
from tqdm import tqdm
1627-
```
1628-
1629-
```python
16301627
from time import sleep
16311628
for i in tqdm([1, 2, 3]):
16321629
sleep(0.2)
@@ -1640,9 +1637,6 @@ Plot
16401637
```python
16411638
# $ pip3 install matplotlib
16421639
from matplotlib import pyplot
1643-
```
1644-
1645-
```python
16461640
pyplot.plot(<data_1> [, <data_2>, ...])
16471641
pyplot.savefig(<filename>, transparent=True)
16481642
pyplot.show()
@@ -1651,13 +1645,10 @@ pyplot.show()
16511645

16521646
Table
16531647
-----
1648+
#### Prints CSV file as ASCII table:
16541649
```python
16551650
# $ pip3 install tabulate
16561651
from tabulate import tabulate
1657-
```
1658-
1659-
#### Prints CSV file as ASCII table:
1660-
```python
16611652
import csv
16621653
with open(<filename>, encoding='utf-8') as file:
16631654
lines = csv.reader(file, delimiter=';')
@@ -1672,9 +1663,7 @@ Curses
16721663
```python
16731664
# $ pip3 install curses
16741665
from curses import wrapper
1675-
```
16761666

1677-
```python
16781667
def main():
16791668
wrapper(draw)
16801669

0 commit comments

Comments
 (0)