Skip to content

Commit be5d004

Browse files
committed
Repair no import csv
1 parent d82f16e commit be5d004

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

source/c06/p01_read_write_csv_data.rst

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
.. code-block:: python
4343
4444
from collections import namedtuple
45+
import csv
4546
with open('stock.csv') as f:
4647
f_csv = csv.reader(f)
4748
headings = next(f_csv)

0 commit comments

Comments
 (0)