Python csv

From wikinotes

Usage

read

import csv

with open("file.csv", "r") as fd:
    for row in csv.reader(fd):
        print(row)