1.UnicodeDecodeError: 'ascii' codec can't decode byte 0xe4 in position 0: ordinal not in range(128) 解决方案: import sysreload(sys)sys.setdefaultencoding('utf-8') 2.UnicodeEncodeError: 'latin-1' codec can't encode characters in position 9-13: ordinal not…
将一个py脚本从Centos转到win运行,出错如下: UnicodeDecodeError: 'gbk' codec can't decode byte 0xff in position 0: illegal multibyte sequence 虽然明白是编码的问题,网络上decode()什么的,貌似不适用python3.后来发现使用字节方式打开可以.出错函数如下:gridfs.GridFS.put()函数.其中调用了读写操作 If you want raw bytes then you n…