I am trying to read_csv
a csv file with cyrillic charactres with pandas.
import pandas
data = pandas.read_csv('dataset.csv', delimiter='\|\|', engine='python', encoding='utf-8')
print type(data.name[0])
<type 'str'>
Here, I am expecting to get unicode
as with
print type(u'hello')
<type 'unicode'>
What I am doing wrong?