问题1:utf_8.py", line 16, in decode 中文字符编码的问题
问题1:\lib\encodings\utf_8.py", line 16, in decode return codecs.utf_8_decode(input, errors, True) UnicodeDecodeError: 'utf8' codec can't decode byte 0xce in position 0: invalid continuation byte
分析原因:这个是python编辑器遇见中文字符编码的问题
过程描述:用ride编辑运行时,在cmd报以上的错误
解决方案:
1、在python的安装目录下Python27\Lib\encodings,找到utf_8.py文件
2、修改def decode(input, errors='strict'): 我是将strict改为ignore
参考文章:https://www.cnblogs.com/cherylwu/p/6557770.html
加油,后续继续努力!