tst = pd.read_csv('/Users/me/Desktop/stuff/Et2Load.csv', header=0,delimiter="\t", quoting=3)
print(tst.head(2)) # ok
#print(tst['date'][0])
我编写了这个文件,一行标题为2行 3列,2行 ID,日期,coldata
0 1,2016年8月18日,“随着所有这些事情的进行......
1 2,2016年8月19日,这是一部很棒的电影。穆......
我无法访问特定的“细胞” print(tst ['date'] [0])错误
返回self._engine.get_loc(self._maybe_cast_indexer(key)) 在pandas.index.IndexEngine.get_loc中文件“pandas / index.pyx”,第137行(pandas / index.c:4154) 在pandas.index.IndexEngine.get_loc中文件“pandas / index.pyx”,第159行(pandas / index.c:4018) 在pandas.hashtable.PyObjectHashTable.get_item中文件“pandas / hashtable.pyx”,第675行(pandas / hashtable.c:12368) 在pandas.hashtable.PyObjectHashTable.get_item中文件“pandas / hashtable.pyx”,第683行(pandas / hashtable.c:12322) KeyError:'date'
答案 0 :(得分:0)
这是个大秘密:
set_index('name the column that going to be used as 'id'')
很难找到这个。