AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘xreadlines‘
Posted God is Love
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AttributeError: ‘_io.TextIOWrapper‘ object has no attribute ‘xreadlines‘相关的知识,希望对你有一定的参考价值。
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‘的主要内容,如果未能解决你的问题,请参考以下文章
Python 多处理库错误(AttributeError:__exit__)
AttributeError:模块“numpy”没有属性“__version__”
AttributeError:模块“__main__”没有属性“AverageWordLengthExtractor”
与torch.no_grad:AttributeError:__enter__