You need to strip your lines,but as a pythonic way you can use csv module for dealing with csv files :
>>> 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 csv file rows if you just want the firs row in a list you can use next() method of reader object :
>>> import csv
>>> with open('curr.csv', 'rb') as csvfile:
... spamreader = csv.reader(csvfile, delimiter=',')
... print spamreader.next()
And if you want the whole of your rows within a list you can use a nested list comprehension :
>>> import csv
>>> with open('curr.csv', 'rb') as csvfile:
... spamreader = csv.reader(csvfile, delimiter=',')
... print [j for i in spamreader for j in i]
csvmodule.