I'm reading a utf8 encoded csv file with python
f = open('test.csv', 'r')
reader = csv.reader(f)
r = reader.next()
r[10]
which returns
'\xc3\x9altima actualizaci\xc3\xb3n del ejercicio 2014: 27 Abril 2014.'
That should be 'Última actualización del ...'
I'm just wondering how is that data encoded (multy byte perhaps?) and how can I convert it to a normal string with the following content: 'Última actualización del ...'
I tried with:
r[10].decode('utf8')
but I got
u'\xdaltima actualizaci\xf3n del ejercicio 2014: 27 Abril 2014.'