Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Supposte I have two Python dictionaries - dictA and dictB. I need to find out if there are any keys which are present in dictB but not in dictA. Which is the fastest way to go about it. Should I convert the dictionary keys into a set and then go about..

Interested in knowing your thoughts...


Thanks for your responses.

Apologies for not stating my question properly. My scenario is like this - I have a dictA which can be the same as dictB or may have some keys missing as compared to dictB or else the value of some keys might be different which has to be set to that of dictA key's value.

Problem is the dictionary has no standard and can have keys which can be dict of dict....

Say

dictA={'key1':a, 'key2':b, 'key3':{'key11':cc, 'key12':dd}, 'key4':{'key111':{....}}}
dictB={'key1':a, 'key2:':newb, 'key3':{'key11':cc, 'key12':newdd, 'key13':ee}.......

So 'key2' value has to be reset to the new value and 'key13' has to be added inside the dict. The key value does not have a fixed format. It can be a simple value or a dict or a dict of dict....

share|improve this question

9 Answers

You can use set operations on the keys:

diff = set(dictb.keys()) - set(dicta.keys())

Here is a class to find all the possibilities: what was added, what was removed, which key-value pairs are the same, and which key-value pairs are unchanged.

class DictDiffer(object):
    """
    Calculate the difference between two dictionaries as:
    (1) items added
    (2) items removed
    (3) keys same in both but changed values
    (4) keys same in both and unchanged values
    """
    def __init__(self, current_dict, past_dict):
        self.current_dict, self.past_dict = current_dict, past_dict
        self.set_current, self.set_past = set(current_dict.keys()), set(past_dict.keys())
        self.intersect = self.set_current.intersection(self.set_past)
    def added(self):
        return self.set_current - self.intersect 
    def removed(self):
        return self.set_past - self.intersect 
    def changed(self):
        return set(o for o in self.intersect if self.past_dict[o] != self.current_dict[o])
    def unchanged(self):
        return set(o for o in self.intersect if self.past_dict[o] == self.current_dict[o])

Here is some sample output:

>>> a = {'a': 1, 'b': 1, 'c': 0}
>>> b = {'a': 1, 'b': 2, 'd': 0}
>>> d = DictDiffer(b, a)
>>> print "Added:", d.added()
Added: set(['d'])
>>> print "Removed:", d.removed()
Removed: set(['c'])
>>> print "Changed:", d.changed()
Changed: set(['b'])
>>> print "Unchanged:", d.unchanged()
Unchanged: set(['a'])

Much later: available now as a github repo: https://github.com/hughdbrown/dictdiffer

share|improve this answer
Thanks, this is exactly what I needed. – xaralis Apr 26 '11 at 7:43
Smart solution, thanks! I've made it work with nested dicts by checking whether changed or unchanged values are dict instances and calling a recursive function to check them again using your class. – AJJ Dec 12 '12 at 12:24
@AJJ: Open-sourced the code on github: github.com/hughdbrown/dictdiffer Let the pull requests begin! – hughdbrown Jan 14 at 20:33
@AJJ I'd love to see that implementation. – urschrei Mar 7 at 11:30
1  
@urschrei: AJJ submitted a github pull request for this github.com/hughdbrown/dictdiffer/pull/3. I have not gotten around to reviewing it yet. You could take his implementation if you weren't willing to wait on me: github.com/ajweb/dictdiffer. – hughdbrown Apr 23 at 13:14

As Alex Martelli wrote, if you simply want to check if any key in B is not in A, any(True for k in dictB if k not in dictA) would be the way to go.

To find the keys that are missing:

diff = set(dictB)-set(dictA) #sets

C:\Dokumente und Einstellungen\thc>python -m timeit -s "dictA =    
dict(zip(range(1000),range
(1000))); dictB = dict(zip(range(0,2000,2),range(1000)))" "diff=set(dictB)-set(dictA)"
10000 loops, best of 3: 107 usec per loop

diff = [ k for k in dictB if k not in dictA ] #lc

C:\Dokumente und Einstellungen\thc>python -m timeit -s "dictA = 
dict(zip(range(1000),range
(1000))); dictB = dict(zip(range(0,2000,2),range(1000)))" "diff=[ k for k in dictB if
k not in dictA ]"
10000 loops, best of 3: 95.9 usec per loop

So those two solutions are pretty much the same speed.

share|improve this answer
3  
This makes more sense: any(k not in dictA for k in dictB) – hughdbrown May 2 '11 at 10:07

If you really mean exactly what you say (that you only need to find out IF "there are any keys" in B and not in A, not WHICH ONES might those be if any), the fastest way should be:

if any(True for k in dictB if k not in dictA): ...

If you actually need to find out WHICH KEYS, if any, are in B and not in A, and not just "IF" there are such keys, then existing answers are quite appropriate (but I do suggest more precision in future questions if that's indeed what you mean;-).

share|improve this answer
This will not work if there's a key in B that's not in A and it evaluates to False. For example: a = {}; b = {'': 'sample'}; any(k for k in b if k not in a) – Steve Losh Jul 22 '09 at 16:51
2  
any(True for k in b if k not in a) – Jochen Ritzel Jul 22 '09 at 16:58
@THC4k Yep, that's likely the best way. – Steve Losh Jul 22 '09 at 17:05
Good points @Steve and @thc4k, thanks - editing the answer to fix my bug now. – Alex Martelli Jul 23 '09 at 0:23

not sure whether its "fast" or not, but normally, one can do this

dicta = {"a":1,"b":2,"c":3,"d":4}
dictb = {"a":1,"d":2}
for key in dicta.keys():
    if not key in dictb:
        print key
share|improve this answer
You have to swap dicta and dictb since he wants to know those keys of dictb that are not in dicta. – Gumbo Jul 22 '09 at 13:51
thanks. i am bad with english :) – ghostdog74 Jul 22 '09 at 14:07
very helpful answer as it provides the raw key. Much appreciated. – dwstein Aug 9 '12 at 16:35

If on Python ≥ 2.7:

# update different values in dictB
# I would assume only dictA should be updated,
# but the question specifies otherwise

for k in dictA.viewkeys() & dictB.viewkeys():
    if dictA[k] != dictB[k]:
        dictB[k]= dictA[k]

# add missing keys to dictA

dictA.update( (k,dictB[k]) for k in dictB.viewkeys() - dictA.viewkeys() )
share|improve this answer

what about standart (compare FULL Object)

PyDev->new PyDev Module->Module: unittest

import unittest


class Test(unittest.TestCase):


    def testName(self):
        obj1 = {1:1, 2:2}
        obj2 = {1:1, 2:2}
        self.maxDiff = None # sometimes is usefull
        self.assertDictEqual(d1, d2)

if __name__ == "__main__":
    #import sys;sys.argv = ['', 'Test.testName']

    unittest.main()
share|improve this answer

Here's a way that will work, allows for keys that evaluate to False, and still uses a generator expression to fall out early if possible. It's not exceptionally pretty though.

any(map(lambda x: True, (k for k in b if k not in a)))

EDIT:

THC4k posted a reply to my comment on another answer. Here's a better, prettier way to do the above:

any(True for k in b if k not in a)

Not sure how that never crossed my mind...

share|improve this answer

Not sure if it is still relevant but I came across this problem, my situation i just needed to return a dictionary of the changes for all nested dictionaries etc etc. Could not find a good solution out there but I did end up writing a simple function to do this. Hope this helps,

share|improve this answer
It would be preferable to have the smallest amount of code that fixes the OP's problem actually in the answer, instead of a link. If the link dies or moves, your answer becomes useless. – George Stocker May 9 at 12:22

May not 100% fit your question - but you could dump the dictionaries to json and compare the resulting strings. ;-)

share|improve this answer
Do you have an example to achieve that? – ForceMagic Nov 11 '12 at 6:41
why json? Just convert them to strings. isequal = lambda (a, b): unicode(a)==unicode(b) – speedplane Feb 9 at 22:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.