博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
window.location
查看>>
C#实现万年历(农历、节气、节日、星座、星宿、属相、生肖、闰年月、时辰)
查看>>
使用Flex图表组件
查看>>
官网分析(英雄传奇)(如何设计网站前端)
查看>>
SSH Key的生成和使用(for git)
查看>>
html5--6-52 动画效果-过渡
查看>>
调查表与调查结果分析
查看>>
Windows系统下安装MySQL详细教程(命令安装法)
查看>>
PHP实用小程序(六)
查看>>
PDFsharp Samples
查看>>
django-cms 代码研究(八)app hooks
查看>>
peewee Model.get的复杂查询
查看>>
IE浏览器兼容性设置的一些问题
查看>>
SQL Server复制入门(二)----复制的几种模式
查看>>
javascript 简单认识
查看>>
tomcat 系统架构与设计模式 第二部分 设计模式 转
查看>>
scanf中的%[^\n]%*c格式
查看>>
启动Eclipse报Initializing Java Tooling错误解决方法
查看>>
用jquery来实现类似“网易新闻”横向标题滑动的移动端页面
查看>>
(原)基于物品的协同过滤ItemCF的mapreduce实现
查看>>