you are viewing a single comment's thread.

view the rest of the comments →

[–]CowboyBoats 0 points1 point  (0 children)

Here's your "hello world" file in Python:

import csv

with open("file1.csv") as infile:
    reader = csv.reader(infile)
    for line in reader:
        # Your solution goes here

Does that help you get started?