How to read and create csv files using Python - LinuxConfig.org

CSV is the acronym of “Comma Separated Values”. A csv file is a just plain text document used to represent and exchange tabular data. Each row in a csv file represents an “entity”, and each column represents an attribute of it. Columns are usually separated by a comma but other characters can be used as field separator instead of it. In this tutorial we will see how to read and create csv files using Python and specifically the csv module, which is part of the language standard library.


This is a companion discussion topic for the original entry at https://linuxconfig.org/how-to-read-and-create-csv-files-using-python