gpt4 book ai didi

python - 循环查找两个字典中的匹配值

转载 作者:太空宇宙 更新时间:2023-11-04 02:10:58 25 4
gpt4 key购买 nike

我有两个不同的文件,其中包含字典。我试图循环遍历第一个字典文件中的键('name')和值,并将它们与第二个文件匹配。我似乎得到了错误的输出,因为它循环遍历了键“名称”和“大小”。我已经研究了几种执行此操作的方法,但我不想将我的字典转换为集合。我希望能够打印出“匹配”或“不匹配”。到目前为止,我已经完成了以下工作:

def compare_files():

with open('new.json', 'r') as current_data_file, open('old.json','r') as pre_data_file:

for current_data, previous_data in zip(current_data_file, pre_data_file):

data_current = json.loads(current_data)
data_previous = json.loads(previous_data)



for key, value in data_current.items():
if value not in data_previous:
print "No Match"
else:
print "Match"

这是我正在加载的两个 json 文件:

旧的.json

{"name": "d.json", "size": 1000}
{"name": "c.json", "size": 1000}
{"name": "b.json", "size": 1000}

新的.json

{"name": "a.json", "size": 1000}
{"name": "b.json", "size": 1000}
{"name": "c.json", "size": 1000}

data_current 是:

{u'size': 1000, u'name': u'a.json'}
{u'size': 1000, u'name': u'b.json'}
{u'size': 1000, u'name': u'c.json'}

data_previous 是:

{u'size': 1000, u'name': u'd.json'}
{u'size': 1000, u'name': u'c.json'}
{u'size': 1000, u'name': u'b.json'}

输出:

No Match
No Match
No Match
No Match
No Match
No Match

我的预期输出是:

No Match
Match
Match

b.json 和c.json 都存在,但a.json 和d.json 不存在。

最佳答案

为了避免麻烦,您可以直接使用 pandas(第三方库)读取数据,并且可以非常轻松地进行分析

import pandas as pd

df=pd.DataFrame('new.json')
df2=pd.DataFrame('old.json')

df.name.isin(df2.name).replace({False:'No Match',True:'Match'}).tolist()

输出

['No Match', 'Match', 'Match']

关于python - 循环查找两个字典中的匹配值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53745893/

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