Skip to content

Commit 15b70c5

Browse files
committed
Table
1 parent 87835a6 commit 15b70c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1648,8 +1648,8 @@ Table
16481648
#### Prints CSV file as ASCII table:
16491649
```python
16501650
# $ pip3 install tabulate
1651-
import csv
16521651
from tabulate import tabulate
1652+
import csv
16531653
with open(<filename>, encoding='utf-8') as file:
16541654
lines = csv.reader(file, delimiter=';')
16551655
headers = [header.title() for header in next(lines)]

0 commit comments

Comments
 (0)