python读文件,TypeError: a bytes-like object is required, not 'str'
Posted 西伯尔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读文件,TypeError: a bytes-like object is required, not 'str'相关的知识,希望对你有一定的参考价值。
2种方法:
1.open文件设置encoding
file = open(filename, ‘r‘, encoding=‘UTF-8‘)
2.用encode方法
str = str.encode()
参考:https://www.fujieace.com/python/str-bytes.html
以上是关于python读文件,TypeError: a bytes-like object is required, not 'str'的主要内容,如果未能解决你的问题,请参考以下文章
python-操作excel(读-xlrd模块写-xlwt模块)