I'm parsing a csv file using Python.
The CSV file looks like:
value1,value2,value3(a,b,c)
The Python code:
with open(file_path, 'rb') as this_file:
reader = csv.reader(this_file, delimiter=',')
for row in reader:
print row
Obviously the CSV reader interprets this as:
"value1","value2","value3(","a","b","c)"
What is the best way to stop Python breaking value2() into four values?
Thanks.