决策树问题一:读取文件头报错问题 has no attribute next
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了决策树问题一:读取文件头报错问题 has no attribute next相关的知识,希望对你有一定的参考价值。
这个是版本的问题引起的,在2.7版本中应该使用代码如下:
allElectronicsData = open(r‘AllElectronics.csv‘, ‘rb‘)
reader = csv.reader(allElectronicsData)
print(reader)
headers =reader.next
在高版本中:
allElectronicsData = open(r‘AllElectronics.csv‘, ‘rt‘)
reader = csv.reader(allElectronicsData)
print(reader)
headers =next(reader)
以上是关于决策树问题一:读取文件头报错问题 has no attribute next的主要内容,如果未能解决你的问题,请参考以下文章
Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法
解决方法:opencv读取中文路径图像报错 | AttributeError: ‘NoneType‘ object has no attribute ‘astype‘
解决方法:opencv读取中文路径图像报错 | AttributeError: ‘NoneType‘ object has no attribute ‘astype‘
python jieba 结巴分词报错 AttributeError: 'module' object has no attribute 'cut'
Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法
关于报错:AttributeError: module 'turtle' has no attribute 'setup' 问题