gpt4 book ai didi

Python - 匹配具有相似键值对的字典

转载 作者:太空宇宙 更新时间:2023-11-03 21:14:42 25 4
gpt4 key购买 nike

我正在尝试使用行文本的键y2来匹配字典,并将它们存储在新的字典键Transaction下。

这是我的输入:

a = [[{'Line No ': '1', 'Line Bounding Box ': '(15, 2, 170, 79)', 'Lowest Confidence ': '0', 'Line texts ': [{'Column_No': '2', 'text_item': 'stuff1','y2':100}]}],[{'Line No ': '1', 'Line Bounding Box ': '(15, 2, 170, 79)', 'Lowest Confidence ': '0', 'Line texts ': [{'Column_No': '1', 'text_item': 'stuff2','y2':100}]}],[{'Line No ': '1', 'Line Bounding Box ': '(15, 2, 170, 79)', 'Lowest Confidence ': '0', 'Line texts ': [{'Column_No': '5', 'text_item': 'stuff3','y2':101}]}]]

这是我使用的逻辑:

sorted_lst = []

''' Getting each dict row by row '''
for i in a:
#print(i)
x = (i[0]['y2'])
#print(x)
sorted_lst.append(x)
#print(sorted_lst)
sorted_lst = sorted(list(set(sorted_lst)))
c = []
for k in sorted_lst:
temp_dict1 = {}
if x == k:
temp_key1 = "column" + i[0]["Column_No"]
temp_dict1[temp_key1] = i[0]["text_item"]
#print(temp_dict1)
c.append({'y2':k,'Transactions':temp_dict1})
from pprint import pprint

pprint(c)

这是当前输出,其中第一个匹配字典的打印为 null:

[{'Transactions': {}, 'y2': 100},
{'Transactions': {'column5': 'stuff3'}, 'y2': 101}]

这是所需的输出:

[{'Transactions': {'column2': 'stuff1',
'column1': 'stuff2'},
'y2': 100},
{'Transactions': {'column5': 'stuff3'},
'y2': 101}]

我的逻辑究竟错在哪里?

最佳答案

考虑到 a 中的列表项只有一个字典作为其对应项,我们可以首先将所有不同的 y2 值附加到列表中,然后检查列表中的循环a 在字典中搜索 'Line texts ' 键中的 y2 键的值,作为列表中列表的唯一项目'a'.

试试这个:

a = [[{'Line No ': '1', 'Line Bounding Box ': '(15, 2, 170, 79)', 'Lowest Confidence ': '0', 'Line texts ': [{'Column_No': '2', 'text_item': 'stuff1','y2':100}]}],[{'Line No ': '1', 'Line Bounding Box ': '(15, 2, 170, 79)', 'Lowest Confidence ': '0', 'Line texts ': [{'Column_No': '1', 'text_item': 'stuff2','y2':100}]}],[{'Line No ': '1', 'Line Bounding Box ': '(15, 2, 170, 79)', 'Lowest Confidence ': '0', 'Line texts ': [{'Column_No': '5', 'text_item': 'stuff3','y2':101}]}]]
b = []
for i in a:
b.append(i[0]["Line texts "][0]['y2'])
b = sorted(list(set(b)))
print(b) # [100, 101]
c = []
for k in b:
temp_dict ={}
for i in a:
if i[0]["Line texts "][0]['y2'] == k:
temp_key = "column" + str(i[0]["Line texts "][0]["Column_No"])
temp_dict[temp_key] = i[0]["Line texts "][0]["text_item"]
c.append({"Transactions" : temp_dict, "y2" : k})
print(c)
"""
[{'Transactions': {'column1': 'stuff2', 'column2': 'stuff1'}, 'y2': 100},
{'Transactions': {'column5': 'stuff3'}, 'y2': 101}]
"""

您的代码应该给出KeyError,因为a的列表项是单个字典的另一个列表,作为没有任何键的项目'y2',但您正在尝试访问更大字典中不存在的键。

关于Python - 匹配具有相似键值对的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54799551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com