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 b0f8829 commit 1796bbcCopy full SHA for 1796bbc
Doc/library/csv.rst
@@ -98,7 +98,7 @@ The :mod:`csv` module defines the following functions:
98
99
>>> import csv
100
>>> spamWriter = csv.writer(open('eggs.csv', 'w'), delimiter=' ',
101
- ... quotechar='|', quoting=QUOTE_MINIMAL)
+ ... quotechar='|', quoting=csv.QUOTE_MINIMAL)
102
>>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans'])
103
>>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
104
0 commit comments