码迷,mamicode.com
首页 > 移动开发 > 详细

AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘xreadlines‘

时间:2020-06-05 13:03:49      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:原因   exti   for循环   一个   for   方法   http   tee   bing   

Python 错误!AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘xreadlines‘

Traceback (most recent call last):

File "countline.py", line 33, in <module>

totalline = totalline + countLine(filelist)

File "countline.py", line 23, in countLine

for file_line in open(fname).xreadlines():

AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘xreadlines‘

原因:

  • 在Python 2里,文件对象有一个xreadlines()方法,它返回一个迭代器,一次读取文件的一行。这在for循环中尤其有用。事实上,后来的Python 2版本给文件对象本身添加了这样的功能。
  • 在Python 3里,xreadlines()方法不再可用了。

解决方法:

for file_line in open(fname).xreadlines():

改为:for file_line in open(fname, encoding="utf-8").readlines():

加上utf-8就不会乱码了。

?

文章来源:刘俊涛的博客 欢迎关注公众号、留言、评论,一起学习。

?

若有帮助到您,欢迎点击推荐,您的支持是对我坚持最好的肯定(*^_^*)

AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘xreadlines‘

标签:原因   exti   for循环   一个   for   方法   http   tee   bing   

原文地址:https://www.cnblogs.com/lovebing/p/13048948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!