字典中有KeyError但键存在

时间:2019-01-30 15:56:40

标签: python python-3.x dictionary keyerror

我正在解析一个像这样的字典:

data = {0: {},
        1: {'1': 'M_AVL_002'},
        2: {'2': 'CloudServiceAvailability'},
        3: {'3': 'P_001'},
        4: {'4': '2.592 x10^6'},
        5: {'4': 'second'},
        6: {'3': 'E_001'},
        7: {'4': ' 100 x (P_001- M_TQD_001)/P_001'},
        8: {'4': 'ISO80000'},
        9: {'4': 'percentage'},
        10: {'1': 'M_TQD_001'},
        11: {'2': 'TotalQualifiedDowntime'},
        12: {'3': 'E_001'},
        13: {'4': '?(M_QDT_001)'},
        14: {'4': 'ISO80000'},
        15: {'4': 'second'}}

我想访问一些像这样的值:

for metric in XML.findall("{http://standards.iso.org/iso-iec/19086/-2/ed-1/en}Metric"):
        for row,value in data.items() :
            if (row==0):
                pass
            else :
                for col,v in value.items():
                    if (col=="1"):
                        metric.set('id',str(data[row][col]))
                    if (col=="2"):
                        metric.set('description',str(data[row][col]))
                    if (col=="3"):
                        if (str(data[row][col]).startswith("E")):
                            metric.find('{http://standards.iso.org/iso-iec/19086/-2/ed-1/en}Expression').set("id",str(data[row][col]))
                            metric.find('{http://standards.iso.org/iso-iec/19086/-2/ed-1/en}Expression').set("expressionStatement",str(data[str(int(row)+1)][str(int(col)+1)]))
                            metric.find('{http://standards.iso.org/iso-iec/19086/-2/ed-1/en}Expression').set("expressionLanguage",str(data[str(int(row)+2)][str(int(col)+1)]))
                            metric.find('{http://standards.iso.org/iso-iec/19086/-2/ed-1/en}Expression').set("unit",str(data[str(int(row)+3)][str(int(col)+1)]))
                        elif (str(data[row][col]).startswith("P")):
                            for param in metric.findall('{http://standards.iso.org/iso-iec/19086/-2/ed-1/en}Parameter'):
                                if(str(data[row][col])==param.get('id')):
                                    a=str(data[row][col])
                                    print(str(int(row)+1),str(int(col)+1))
                                    b=str(data[str(int(row)+1)][str(int(col)+1)])
                                    c=str(data[str(int(row)+2)][str(int(col)+1)])
                                    param.set("id",a)
                                    param.set("parameterStatement",b)
                                    param.set("unit",c)
                                else:
                                    pass
                        elif (str(data[row][col]).startswith("R")):
                            for rule in metric.findall('{http://standards.iso.org/iso-iec/19086/-2/ed-1/en}Rule'):
                                if(str(data[row][col])==rule.get('id')):
                                    a=str(data[row][col])
                                    b=str(data[str(int(row)+1)][str(int(col)+1)])
                                    rule.set("id",a)
                                    rule.set("ruleStatement",b)
                                else :
                                    pass

但是,我在分配KeyError的那一行上有一个b。我尝试打印rowcol,并检查row + 1和col + 1是否为键,是否为键。

在程序使row = 6和col = 3崩溃的情况下,因此在该位置有一个值,但对于row = 7和col = 4也是这样,我有:KeyError :'7'

2 个答案:

答案 0 :(得分:1)

for row,value in data.items() :
    for col,v in value.items():
        a=data[row][col]
        b=data[row+1][str(int(col)+1)]

但是在row = 4和col = 4的点上,您将得到错误,因为数据中没有data [5] ['5']元素。

请注意,数据['4']和数据[4]是不同的东西。这就是为什么您需要通过正确的键获取dict元素的原因。

答案 1 :(得分:0)

外部字典的键是整数,因此您不应将它们转换为字符串。

for row,value in data.items() :
    for col,v in value.items():
        a=data[row][col]
        b=data[row+1][str(int(col)+1)]

但是,您将再次拥有KeyError!打印您要访问的密钥。

for row,value in data.items() :
    for col,v in value.items():
        a=data[row][col]
        print(row+1, str(int(col)+1))

您将获得:

2 2
3 3
4 4
5 5
6 5
7 4
8 5
9 5
10 5
11 2
12 3
13 4
14 5
15 5
16 5

并非所有人都有效。因此,“字典中有KeyError,但Key存在”不是一个正确的语句!