gpt4 book ai didi

python - 字典递归比较程序

转载 作者:行者123 更新时间:2023-12-01 05:25:28 30 4
gpt4 key购买 nike

我创建了一个程序来比较两个 python 字典并输出两者的差异。它适用于深度为 2 或更小的字典。我应该怎么做才能处理更深度的字典以及嵌套的字典?

我遇到的另一个问题是,当我通过 get_json() 函数传递 json 数组时,它会作为列表返回。并且该程序正在使用列表而不是字典来出错。我应该如何解决这个问题?

我的程序:

#!/usr/bin/env python2

import json

def get_json():
file_name = raw_input("Enter name of JSON File: ")
with open(file_name) as json_file:
json_data = json.load(json_file)
return json_data

def print_diff(json1, json2):
for n in json1:
if n not in json2:
print('- "' + str(n) + '":')
for n in json2:
if n not in json1:
print('+ "' + str(n) + '":')
continue
if json2[n] != json1[n]:
if type(json2[n]) not in (dict, list):
print('- "' + str(n) + '" : "' + str(json1[n]))
print('+ "' + str(n) + '" : "' + str(json2[n]))
else:
if type(json2[n]) == dict:
print_diff(json1[n], json2[n])
continue
return


def main():
file1 = get_json()
print(type(file1))
file2 = get_json()
print(type(file2))
print_diff(file1, file2)

if __name__ == "__main__":
main()

字典 1 的示例:

{
"widget": {
"debug": "on",
"window": {
"title": "Sample Konfabulator Widget",
"name": "main_window",
"width": 500,
"height": 500
},
"image": {
"src": "Images/Sun.png",
"name": "sun1",
"hOffset": 250,
"vOffset": 250,
"alignment": "center"
},
"text": {
"data": "Click Here",
"size": 36,
"style": "bold",
"name": "text1",
"hOffset": 250,
"vOffset": 100,
"alignment": "center",
"onMouseUp": "sun1.opacity = (sun1.opacity / 100) * 90;"
}
}
}

字典 2 的示例:

{
"widget": {
"debug": "on",
"window": {
"title": "Sample Konfabulator Widget",
"name": "main_window",
"width": 500,
"height": 500
},
"image": {
"src": "Images/Sun.png",
"name": "sun2",
"hOffset": 100,
"vOffset": 100,
"alignment": "center"
},
"text": {
"data": "Click Here",
"size": 36,
"style": "bold",
"name": "text1",
"hOffset": 250,
"vOffset": 100,
"alignment": "center",
"onMouseUp": "sun1.opacity = (sun1.opacity / 100) * 90;"
}
}
}

示例输出:

Enter name of JSON File: JSON1.json
<type 'dict'>
Enter name of JSON File: JSON2.json
<type 'dict'>
- "vOffset" : "250
+ "vOffset" : "100
- "name" : "sun1
+ "name" : "sun2
- "hOffset" : "250
+ "hOffset" : "100

最佳答案

我编写了以下代码,它可以比较两个不同深度的字典并将差异打印到控制台输出。请注意,如果在第一个字典中找到了该键,但在第二个字典中没有找到该键,它只会打印未找到的键(它不会在躺着的树下打印)。我希望这是所期望的。此代码适用于单向比较,因此您需要进行两次调用才能以其他方式比较字典。

def findDiff(d1, d2, path=""):
for k in d1.keys():
if not d2.has_key(k):
print path, ":"
print k + " as key not in d2", "\n"
else:
if type(d1[k]) is dict:
if path == "":
path = k
else:
path = path + "->" + k
findDiff(d1[k],d2[k], path)
else:
if d1[k] != d2[k]:
print path, ":"
print " - ", k," : ", d1[k]
print " + ", k," : ", d2[k]

print "comparing s1 to s2:"
print findDiff(s1,s2)
print "comparing s2 to s1:"
print findDiff(s2,s1)

输出::

comparing s1 to s2:
widget->text :
data as key not in d2
widget->text->window->image :
- vOffset : 250
+ vOffset : 100
widget->text->window->image :
- name : sun1
+ name : sun2
widget->text->window->image :
- hOffset : 250
+ hOffset : 100
None
comparing s2 to s1:
widget->text->window->image :
- vOffset : 100
+ vOffset : 250
widget->text->window->image :
- name : sun2
+ name : sun1
widget->text->window->image :
- hOffset : 100
+ hOffset : 250
None

请注意,在您的问题中,您没有考虑 key 是否存在差异,因此不会打印 key 的路径。我正在我的代码中打印它。我已从 widget->text 中删除了数据元素以进行测试。所以,请忽略这个控制台输出

关于python - 字典递归比较程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21423384/

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