当前位置: 首页 > 知识库问答 >
问题:

熊猫read_excelUnicodeDecodeError:'utf-8'编解码器无法解码位置0的字节0xd0:无效的延续字节

叶炜
2023-03-14

以下代码创建错误

UnicodeDecodeError:“utf-8”编解码器无法解码位置0中的字节0xd0:无效的连续字节

with open(file_path) as excel_file:
    df = pd.read_excel(excel_file)

共有1个答案

陆城
2023-03-14

下面的代码解决了这个问题

with open(file_path,mode="rb") as excel_file:
    df = pd.read_excel(excel_file)
 类似资料: