TypeError: write() argument must be str, not bytes报错
Posted cheng10
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: write() argument must be str, not bytes报错相关的知识,希望对你有一定的参考价值。
TypeError: write() argument must be str, not bytes
之前文件打开的语句是:
with open(‘C:/result.pk‘,‘w‘) as fp:
然后使用二进制方式打开就没有这个问题:
with open(‘C:/result.pk‘,‘wb+‘) as fp:
产生问题的原因是因为存储方式默认是二进制方式。
以上是关于TypeError: write() argument must be str, not bytes报错的主要内容,如果未能解决你的问题,请参考以下文章
Python错误TypeError: write() argument must be str, not bytes
TypeError: write() argument must be str, not bytes报错
TypeError: write() argument must be str, not bytes
Python 3 TypeError: must be str, not bytes with sys.stdout.write()