Thanks to visit codestin.com Credit goes to github.com
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 6173285 commit f290cb5Copy full SHA for f290cb5
1 file changed
Doc/library/csv.rst
@@ -97,7 +97,7 @@ The :mod:`csv` module defines the following functions:
97
98
>>> import csv
99
>>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ',
100
- ... quotechar='|', quoting=QUOTE_MINIMAL)
+ ... quotechar='|', quoting=csv.QUOTE_MINIMAL)
101
>>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans'])
102
>>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
103
0 commit comments