我是靠谱客的博主 稳重鱼,最近开发中收集的这篇文章主要介绍AttributeError: '_io.BufferedWriter' object has no attribute 'wirte',觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
查了好久资料,也试了无数方法,原来是自己单词写错了,我就一直想f怎么就没这个方法了。。。。
write居然也能写成wirte
with open(filename+'/'+str(x)+'.html','wb')as f:
f.wirte((response.read()))
改:
with open(filename+'/'+str(x)+'.html','wb')as f:
f.write((response.read()))
。。。
最后
以上就是稳重鱼为你收集整理的AttributeError: '_io.BufferedWriter' object has no attribute 'wirte'的全部内容,希望文章能够帮你解决AttributeError: '_io.BufferedWriter' object has no attribute 'wirte'所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复