You could try something like this.
– matched = [ x for x in dict1 if x in dict2 ]
– unmatched = [ x for x in dict1 if x not in dict2 ]
2
solved How to compare two list of dictionary values present in any index
You could try something like this.
– matched = [ x for x in dict1 if x in dict2 ]
– unmatched = [ x for x in dict1 if x not in dict2 ]
2
solved How to compare two list of dictionary values present in any index