You need to break your lines, but as a pythonic way you can use csvmodule to work with csvfiles:
>>> import csv
>>> with open('curr.csv', 'rb') as csvfile:
... spamreader = csv.reader(csvfile, delimiter=',')
... print list(spamreader)
Note that this will return a nested list of your lines in the file csv, if you just need the first line in the list, you can use the next()object method reader:
>>> import csv
>>> with open('curr.csv', 'rb') as csvfile:
... spamreader = csv.reader(csvfile, delimiter=',')
... print spamreader.next()
, :
>>> import csv
>>> with open('curr.csv', 'rb') as csvfile:
... spamreader = csv.reader(csvfile, delimiter=',')
... print [j for i in spamreader for j in i]