博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AttributeError: '_csv.reader' object has no attribute 'next'
阅读量:4931 次
发布时间:2019-06-11

本文共 960 字,大约阅读时间需要 3 分钟。

我在使用pyhon3.4运行以下代码时报错:AttributeError: '_csv.reader' object has no attribute 'next'

import csvimport numpy as npwith open('C:/Users/Administrator/Desktop/data/titanic.csv', 'rb') as csvfile:    titanic_reader = csv.reader(csvfile, delimiter=',', quotechar = '"')    # Header contains feature names    row = titanic_reader.next()    feature_names = np.array(row)        # Load dataset, and target classes    titanic_X, titanic_y = [], []    for row in titanic_reader:        titanic_X.append(row)        titanic_y.append(row[2]) #The target value is "survived"    titanic_X = np.array(titanic_X)    titanic_y = np.array(titanic_y)

解决方案:

For version 3.2 and above

Change: csv_file_object.next()

To: next(csv_file_object)

then I get another error:

_csv.Error: iterator should return strings, not bytes (did you open the file in text mode?)

Edit: Figured it out needed to change rb to rt

Finally, it works.

 

REF.

[1]

转载于:https://www.cnblogs.com/iamxyq/p/5918581.html

你可能感兴趣的文章
一键安装Gitlab后的备份、迁移与恢复
查看>>
因为本人工作繁忙,精力有限,本博客停止更新。有兴趣的博友可以关注我在CSDN上的主博客...
查看>>
SQL server查看触发器是否被禁用
查看>>
[C++基础]在构造函数内部调用构造函数
查看>>
跟随我在oracle学习php(8)
查看>>
Spring 3.1.0 Hibernate 3.0 Eclipse Spring WEB例子
查看>>
UVA-10212 The Last Non-zero Digit. 分解质因子+容斥定理
查看>>
求两个集合的交集,并集,差集
查看>>
Kotlin的语法糖(一)基础篇
查看>>
OkHttp源码分析
查看>>
让你的app体验更丝滑的11种方法!冲击手机应用榜单Top3指日可待
查看>>
windows kernel exploitation基础教程
查看>>
NS_OPTIONS枚举的用法
查看>>
java9系列(九)Make G1 the Default Garbage Collector
查看>>
QAQ高精度模板笔记√
查看>>
Jmeter计数器的使用-转载
查看>>
【Android笔记】入门篇02:全屏设置和禁止横屏竖屏切换
查看>>
Kubernetes的本质
查看>>
PL/SQL developer 管理多套数据库
查看>>
黑马程序员-分类(category)
查看>>