I have a dataset that i saved as a csv in Sublime after pasting from excel
When I call csv.reader to print all the rows, the whole set is printed out (fantastic):
Output 1

Now that I want to call to print the first row of my dataset "print(row[0])", the first entire column of my dataset prints out:
Output 2

PLEASE HELP! I am trying to learn python.