Reading and writing CSV text files
x

What a CSV file contains

A small table, the equivalent CSV text, and Python row lists with record, field, delimiter, and header row labelled A CSV file is a text file that stores table-like data. Each line is usually one record, and each item inside the line is a field.

Reading and writing CSV text files Lesson