I'm trying to read data from a csv file, especially numbers but I'm getting an unexpected result.
example:
csv: "17.913,92";"17.913,92";
import csv
with open('eggs.csv', 'rb') as csvfile:
reader = csv.reader(csvfile, delimiter=';')
for row in reader
value = row
value has u'"17.913,92"'
saved, but I need "17.913,92"
. how to read this data without the commas, and without doing something like cutting off the remaining characters ""
thanks