Merge pull request #360 from Ascotbe/master

Repair no import csv
This commit is contained in:
XiongNeng
2023-07-02 00:13:59 +08:00
committed by GitHub

View File

@@ -42,6 +42,7 @@
.. code-block:: python
from collections import namedtuple
import csv
with open('stock.csv') as f:
f_csv = csv.reader(f)
headings = next(f_csv)