上传者: 38742460
|
上传时间: 2021-10-06 23:25:43
|
文件大小: 143KB
|
文件类型: -
在试图打开docx文档内容时,以为可以向读取txt文档一样,于是写下了下面的代码
with open('C:\\Users\\Administrator\\Desktop\\案例二.docx','r')as f:
contents = f.read()
print(contents)
结果遇上报错:UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xe3 in position 55: illegal multibyte sequence
解决方法一:
一看,编码错误,祖传方法encoding=’utf-8‘’百试百灵的修改
with o