我有 2 个包含字典的列表,如下所示:
listone = [{'unit1': {'test1': 10}},
{'unit1': {'test2': 45'},
{'unit2': {'test1': 78'},
{'unit2': {'test2': 2'}}]
listtwo = [{'unit1': {'test1': 56}},
{'unit1': {'test2': 34'},
{'unit2': {'test1': 23'},
{'unit2': {'test2': 5'}}]
我也有单独的列表中的所有单元名称和测试名称:
units = ['unit1', 'unit2']
testnames = ['test1,'test2']
我怎样才能找到每个测试值的增量,即 ( test2
- test1
) 的 val,以便我最终可以将数据排列如下:
unit1, test1, delta
unit1, test2, delta
unit2, test1, delta
unit2, test2, delta
到目前为止,我有这些:
def delta(array1, array2):
temp = []
temp2 = []
tmp = []
tmp2 = []
delta = []
for unit in units:
for mkey in array1:
for skey in mkey:
if skey == unit:
temp.append(mkey[skey])
floater(temp) #floats all the values
for i in testnames:
for u in temp:
tmp.append(u[i])
tmp = filter(None, tmp2)
for mkey in array2:
for skey in mkey:
if skey == unit:
temp.append(mkey[skey])
floater(temp2)
for i in testnames:
for u in temp2:
tmp2.append(u[i])
tmp2 = filter(None, tmp2)
delta = [tmp2 - tmp for tmp2, tmp in zip(tmp2, tmp)]
print delta
delta(listone,listtwo)
不幸的是,代码给出了Keyerror
. :( 帮助,请。谢谢。