Browse Source

Table

pull/27/head
Jure Šorn 5 years ago
parent
commit
15b70c5852
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -1648,8 +1648,8 @@ Table
#### Prints CSV file as ASCII table:
```python
# $ pip3 install tabulate
import csv
from tabulate import tabulate
import csv
with open(<filename>, encoding='utf-8') as file:
lines = csv.reader(file, delimiter=';')
headers = [header.title() for header in next(lines)]

Loading…
Cancel
Save