Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 87fca1d

Browse files
committed
Table
1 parent 903d76c commit 87fca1d

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
@@ -1513,7 +1513,7 @@ Table
15131513
# $ pip3 install tabulate
15141514
import csv
15151515
from tabulate import tabulate
1516-
with open(<filename>, encoding='utf-8', newline='') as file:
1516+
with open(<filename>, encoding='utf-8') as file:
15171517
lines = csv.reader(file, delimiter=';')
15181518
headers = [header.title() for header in next(lines)]
15191519
table = tabulate(lines, headers)

0 commit comments

Comments
 (0)