I am trying to do a simple csv parsing using python, I have the following code:
print csvdata
print "\n"
csvparsed = csv.reader(csvdata)
for row in csvparsed:
print row
However, it seems that each row of the parsed data is a single character and not separated by the commas. Am I missing something here? This is the output I'm getting:
Restaurant ID,2,,
,,,
Menu Name,Breakfast Menu,,
['R']
['e']
['s']
['t']
['a']
['u']
['r']
['a']
['n']
['t']
[' ']
['I']
['D']
['', '']
['2']
['', '']
['', '']
[]
['', '']
['', '']
['', '']
[]
['M']
['e']
['n']
['u']
[' ']
['N']
['a']
['m']
['e']
['', '']
['B']
['r']
['e']
['a']
['k']
['f']
['a']
['s']
['t']
[' ']
['M']
['e']
['n']
['u']
['', '']
['', '']