I am a Canopy Express user looking for a way to write to/read from csv files. The default installation of Canopy (on Win 10) does not seem to include the csv module. What are my options?
This is part of the Python standard library, not an add-on package. https://docs.python.org/2/library/csv.html
Did you try import csv
?