Does anyone know another option to solve the UnicodeEncodeError in a dataframe ?
UnicodeEncodeError: 'charmap' codec can't encode character '\u0394' in position 15: character maps to <undefined>
I've identified that the row where set the error contain this symbol
(ΔT)
this problem arises after importing the excel file and in a column that apparently is empty I get the error, that using python 3.9
I have tried to solve by applying the code below but the error remains the same.
df['DB_user'].str.encode('ascii', 'ignore').str.decode('ascii')
Thanks !