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


Groups > comp.lang.python > #69555

Re: Retrieve item deep in dict tree?

Date 2014-04-02 13:25 -0700
From Ethan Furman <ethan@stoneleaf.us>
Subject Re: Retrieve item deep in dict tree?
References <mailman.8818.1396461529.18130.python-list@python.org> <533c70a5$0$2909$c3e8da3$76491128@news.astraweb.com>
Newsgroups comp.lang.python
Message-ID <mailman.8821.1396471817.18130.python-list@python.org> (permalink)

Show all headers | View raw


On 04/02/2014 01:18 PM, Steven D'Aprano wrote:
> On Wed, 02 Apr 2014 13:58:16 -0400, Roy Smith wrote:
>
>> I have a big hairy data structure which is a tree of nested dicts.  I
>> have a sequence of strings which represents a path through the tree.
>> Different leaves in the tree will be at different depths (which range
>> from 1 to about 4 or 5 at most).  I want to get the value stored at that
>> path.  Thus, if
>>
>> keys = ['foo', 'bar', 'baz']
>>
>> I want to retrieve tree['foo']['bar']['baz'].
>>
>> Is there some idiomatic, non-cryptic way to write that as a one-liner?
>
> Er, idiomatic one liner? No, not really. But a helper function makes
> nearly anything into a one-liner:
>
> def traverse(tree, *keys):
>      t = tree
>      for k in keys:
>          t = t[k]
>      return t
>
> # one-liner
> leaf = traverse(tree, *list_of_keys)

+1

Short, simple -- good Python.  :)

--
~Ethan~

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Retrieve item deep in dict tree? Roy Smith <roy@panix.com> - 2014-04-02 13:58 -0400
  Re: Retrieve item deep in dict tree? John Gordon <gordon@panix.com> - 2014-04-02 18:03 +0000
  Re: Retrieve item deep in dict tree? Steven D'Aprano <steve@pearwood.info> - 2014-04-02 20:18 +0000
    Re: Retrieve item deep in dict tree? Ethan Furman <ethan@stoneleaf.us> - 2014-04-02 13:25 -0700
  Re: Retrieve item deep in dict tree? Rustom Mody <rustompmody@gmail.com> - 2014-04-02 19:41 -0700
    Re: Retrieve item deep in dict tree? Rustom Mody <rustompmody@gmail.com> - 2014-04-02 21:15 -0700
      Re: Retrieve item deep in dict tree? Steven D'Aprano <steve@pearwood.info> - 2014-04-03 05:29 +0000
      Re: Retrieve item deep in dict tree? Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-03 01:00 -0600

csiph-web