We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 903d76c commit 87fca1dCopy full SHA for 87fca1d
README.md
@@ -1513,7 +1513,7 @@ Table
1513
# $ pip3 install tabulate
1514
import csv
1515
from tabulate import tabulate
1516
-with open(<filename>, encoding='utf-8', newline='') as file:
+with open(<filename>, encoding='utf-8') as file:
1517
lines = csv.reader(file, delimiter=';')
1518
headers = [header.title() for header in next(lines)]
1519
table = tabulate(lines, headers)
0 commit comments