Search code examples
pythoncsvcanopy

Saving comma separated values in a file with Canopy Express (win 10)


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?


Solution

  • 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?