python TypeError: must be str, not bytes错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python TypeError: must be str, not bytes错误相关的知识,希望对你有一定的参考价值。

1 TypeError: must be str, not bytes错误:
2 
3 解答: 
4  写文件处 f=open(filename, w)应该写为 open(filename, wb)
5  读文件时 f=open(filename,rb)
UnicodeDecodeError: ‘gbk‘ codec can‘t decode byte 0x80 in position 0: illegal multibyte sequence解决方法同上

 


以上是关于python TypeError: must be str, not bytes错误的主要内容,如果未能解决你的问题,请参考以下文章

python报错 TypeError: string indices must be integers

Python错误TypeError: write() argument must be str, not bytes

使用 python 运行 bash 脚本 - TypeError: bufsize must be an integer

Python_异常:TypeError: write() argument must be str, not list

Python 错误:TypeError String Indices Must be Integers 已解决

python向mysql插入数据一直报TypeError: must be real number,not str