I have values in a .csv file that that look like this:
drieëntachtig
één
Now I try to read in the relevant values using the following commands;
df = pd.read_csv('test.csv', sep=";")
numbers = df['numbers'].tolist()
However when I look at the values now I see this in my console:
drie�ntachtig
��n
Could anybody tell how I read the values in python 2.7 so I get the normal values? I already tried:
df = pd.read_csv('test.csv', sep=";", encoding= "uft8")