2017-06-14 196 views
-5

首先,大家好。我目前正在进行一个项目,我的主要目标是从csv文件中获取一些地址,计算这些地址与可信数据库的相似百分比并返回该值。 我有一个代码正在工作,但是当我尝试计算相似的速率时,我收到“write to csv”函数的错误。代码只运行一行,然后崩溃。错误开始发生在第30行之后。预先感谢您的帮助,祝您有美好的一天。Python熊猫错误

全码:https://pastebin.com/4sJZJtY9

错误:

Traceback (most recent call last): 
    File "C:\anaconda\lib\site-packages\pandas\core\indexes\base.py", line 2393, in get_loc 
    return self._engine.get_loc(key) 
    File "pandas\_libs\index.pyx", line 132, in pandas._libs.index.IndexEngine.get_loc (pandas\_libs\index.c:5239) 
    File "pandas\_libs\index.pyx", line 154, in pandas._libs.index.IndexEngine.get_loc (pandas\_libs\index.c:5085) 
    File "pandas\_libs\hashtable_class_helper.pxi", line 1207, in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas\_libs\hashtable.c:20405) 
    File "pandas\_libs\hashtable_class_helper.pxi", line 1215, in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas\_libs\hashtable.c:20359) 
KeyError: 1 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
    File ".\Teste.py", line 74, in <module> 
    cp4[1].to_csv('AI.csv') 
    File "C:\anaconda\lib\site-packages\pandas\core\frame.py", line 2062, in __getitem__ 
    return self._getitem_column(key) 
    File "C:\anaconda\lib\site-packages\pandas\core\frame.py", line 2069, in _getitem_column 
    return self._get_item_cache(key) 
    File "C:\anaconda\lib\site-packages\pandas\core\generic.py", line 1534, in _get_item_cache 
    values = self._data.get(item) 
    File "C:\anaconda\lib\site-packages\pandas\core\internals.py", line 3590, in get 
    loc = self.items.get_loc(item) 
    File "C:\anaconda\lib\site-packages\pandas\core\indexes\base.py", line 2395, in get_loc 
    return self._engine.get_loc(self._maybe_cast_indexer(key)) 
    File "pandas\_libs\index.pyx", line 132, in pandas._libs.index.IndexEngine.get_loc (pandas\_libs\index.c:5239) 
    File "pandas\_libs\index.pyx", line 154, in pandas._libs.index.IndexEngine.get_loc (pandas\_libs\index.c:5085) 
    File "pandas\_libs\hashtable_class_helper.pxi", line 1207, in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas\_libs\hashtable.c:20405) 
    File "pandas\_libs\hashtable_class_helper.pxi", line 1215, in pandas._libs.hashtable.PyObjectHashTable.get_item (pandas\_libs\hashtable.c:20359) 
KeyError: 1 
+0

第29行是一条评论......我不认为错误在那里 – depperm

回答

1

看来,错误的to_csv方法调用之前发生:cp4没有关键1

你读过回溯吗?它明确指出,问题是出在线路74:

File ".\Teste.py", line 74, in <module> 
    cp4[1].to_csv('AI.csv') 
0

你试图访问cp4[1],它看起来像CP4就像对象字典,没有关键1。无论如何,这有点奇怪。当您在cp4上迭代时,您正在尝试访问cp4[1]。请考虑一下。