I\'m trying to read and write a dataframe to a pipe-delimited file. Some of the characters are non-Roman letters (`, ç, ñ, etc.). But it breaks when I try to write out the a
Try this, it works
newdf.to_csv('filename.csv', encoding='utf-8')