【Python】TypeError: an integer is required (got type str)

网友投稿 648 2022-08-27


【Python】TypeError: an integer is required (got type str)

今天调试代码遇到的问题

TypeError: an integer is required (got type str)

问题原因

在python3的打开文件对象的open函数,以下为错误写法

read_helper=open(checkpath,"r","utf-8")

对于第三个参数,指定编码方式必须要加encoding=“utf-8”

read_helper=open(checkpath,"r",encoding="utf-8")

如果不加encoding=,则解释器默认认为第三个参数为指定buffering,这个变量本身要传入一个整形变量才行

def open(file, mode='r', buffering=None, encoding=None, errors=None, newline=None, closefd=True):

而对于二进制读取的模式,则不能制定编码方法,正确写法如下

read_helper=open(checkpath,"rb")


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:springboot创建多module项目的实例
下一篇:【Python】列表(list)分片的扩展用法(python list分片)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~