python读取xml文件报错ValueError: multi-byte encodings are not supported,,1.在使用pytho


1.在使用python对xml文件进行读取时,提示ValueError: multi-byte encodings are not supported

技术分享图片

很多贴子上说把xml的编码格式改为,就可以正常执行了

<?xml version="1.0" encoding="utf-8"?>

  但是事实证明,不成功,解决方法

1.用记事本方式打开xml文件,encoding后面指的就是编码方式

2.把你的xml文件另外为utf-8

技术分享图片

在进行读取,文件编码问题解决

python读取xml文件报错ValueError: multi-byte encodings are not supported

评论关闭