白日放歌须纵酒,青春作伴好还乡。这篇文章主要讲述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‘】若有帮助到您,欢迎点击推荐,您的支持是对我坚持最好的肯定(*^_^*)
推荐阅读
- Springboot+Mybatisplus替换mybatis整合报错Mapped Statements collection does not contain value
- Android之compileSdkVersionminSdkVersion 以及 targetSdkVersion
- AndroidThe layout "activity_main" in layout has no declaration in the base layout folde
- add application window with unknown token XXX Unable to add window;is your activity is running?(代码片段
- Android 使用Zxing报错(Channel is unrecoverably broken and will be disposed!)
- Mac上查看当前安卓手机上打开的app的包名和主程序入口
- 安卓手机号码自动添加空格效果-终极解决方案-亲测能用
- Android为按钮添加相应事件的代码
- ADB使用WIFI连接Android设备