Arcpy:字典语法错误“无法分配给函数调用”

时间:2013-04-10 11:07:40

标签: python arcpy

我正在尝试使用以下代码找到“CrudeRate”及其相关“State_name”的最大值:

import arcpy
arcpy.env.workspace = "C:\\"

shp = r"C:\\USCancer2000.dbf"
rows = arcpy.SearchCursor(shp)
CrudeRate= "CrudeRate"
State_name= "State_name"

out_dict = {}
for row in rows:
    for C in CrudeRate:
        lst = []
        if row.CrudeRate == C:
            lst.append(row.CrudeRate)
        out_dict(C) = max(lst)
del row,rows
for CrudeRate in out_dict:
    print CrudeRate, State_name

但是当我运行它时,我得到:

  

Sytnax错误:无法分配函数调用

有没有人看到问题以及如何解决这个问题?

1 个答案:

答案 0 :(得分:8)

在分配dict值时,您需要使用括号而不是parentesis。

out_dict[C] = max(lst)