Pandas.read_csv() with special characters (accents) in column names �
I found the same problem with spanish, solved it with with “latin1” encoding: import pandas as pd pd.read_csv(“Openhealth_S-Grippal.csv”,delimiter=”;”, encoding=’latin1′) Hope it helps!