Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #3871 > unrolled thread

Re: suggestions, comments on an "is_subdict" test

Started byMRAB <python@mrabarnett.plus.com>
First post2011-04-22 15:29 +0100
Last post2011-04-22 15:29 +0100
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: suggestions, comments on an "is_subdict" test MRAB <python@mrabarnett.plus.com> - 2011-04-22 15:29 +0100

#3871 — Re: suggestions, comments on an "is_subdict" test

FromMRAB <python@mrabarnett.plus.com>
Date2011-04-22 15:29 +0100
SubjectRe: suggestions, comments on an "is_subdict" test
Message-ID<mailman.748.1303482591.9059.python-list@python.org>
On 22/04/2011 14:55, Vlastimil Brom wrote:
> Hi all,
> I'd like to ask for comments or advice on a simple code for testing a
> "subdict", i.e. check whether all items of a given dictionary are
> present in a reference dictionary.
> Sofar I have:
>
> def is_subdict(test_dct, base_dct):
>      """Test whether all the items of test_dct are present in base_dct."""
>      unique_obj = object()
>      for key, value in test_dct.items():
>          if not base_dct.get(key, unique_obj) == value:
>              return False
>      return True
>
> I'd like to ask for possibly more idiomatic solutions, or more obvious
> ways to do this. Did I maybe missed some builtin possibility?
> I am unsure whether the check  against an unique object() or the
> negated comparison are usual.?
> (The builtin exceptions are ok, in case anything not dict-like is
> passed. A cornercase like>>>  is_subdict({}, 4)
>>>> True
> doesen't seem to be worth a special check just now.)
>
You could shorten it slightly to:

def is_subdict(test_dct, base_dct):
     """Test whether all the items of test_dct are present in base_dct."""
     unique_obj = object()
     return all(base_dct.get(key, unique_obj) == value for key, value in 
test_dct.items())

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web