将pandas df写入csv时出现Unicode编码错误。
- 论坛
- 将pandas df写入csv时出现Unicode编码错误。
10 浏览
将pandas df写入csv时出现Unicode编码错误。
我清理了400个Excel文件,并使用pandas将它们读入Python,然后将所有原始数据追加到一个大的df中。
然后当我尝试将其导出为csv时:
df.to_csv("path",header=True,index=False)
我遇到了这个错误:
UnicodeEncodeError: 'ascii' codec can't encode character u'\xc7' in position 20: ordinal not in range(128)
有人能提供修复方法和其含义吗?
谢谢