Your datas aren't in a csv format...
For csv, here is a simple example to read and write datas
import csv
# This class is to define another csv format if you need to
class excel_french(csv.Dialect):
delimiter=';'
quotechar='"'
doublequote=True
skipinitialspace=False
lineterminator='\n'
quoting=csv.QUOTE_MINIMAL
fic='yourfile.csv'
outcsvfic='out.csv'
csv.register_dialect('excel_french', excel_french)
cr=csv.reader(open(fic,"r"), 'excel_french') # 'excel_french' is optionnal.
# Only if you want to use another csv format than the default one
cw=csv.writer(open(outcsvfic,'w'), 'excel_french')
for row in cr:
print row
cw.writerow(row[:2])
More informations in the doc http://docs.python.org/library/csv.html