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


Groups > comp.lang.python > #92470

Re: A basic dictionary question

Date 2015-06-11 12:29 +0100
From MRAB <python@mrabarnett.plus.com>
Subject Re: A basic dictionary question
References <41302A7145AC054FA7A96CFD03835A0A0B980FE0@EX10MBX02.EU.NEC.COM>
Newsgroups comp.lang.python
Message-ID <mailman.391.1434022173.13271.python-list@python.org> (permalink)

Show all headers | View raw


On 2015-06-11 11:10, David Aldrich wrote:
> Hi
>
> I am fairly new to Python.  I am writing some code that uses a
> dictionary to store definitions of hardware registers.  Here is a small
> part of it:
>
> import sys
>
> register = {
>
>      'address'  : 0x3001c,
>
>      'fields' : {
>
>          'FieldA' : {
>
>              'range' : (31,20),
>
>          },
>
>          'FieldB' : {
>
>              'range' : (19,16),
>
>          },
>
>      },
>
>      'width' : 32
>
> };
>
> def main():
>
>      fields = register['fields']
>
>      for field, range_dir in fields:         <== This line fails
>
>          range_dir = field['range']
>
>          x,y = range_dir['range']
>
>          print(x, y)
>
> if __name__ == '__main__':
>
>      main()
>
> I want the code to print the range of bits of each field defined in the
> dictionary.
>
> The output is:
>
> Traceback (most recent call last):
>
>    File "testdir.py", line 32, in <module>
>
>      main()
>
>    File "testdir.py", line 26, in main
>
>      for field, range_dir in fields:
>
> ValueError: too many values to unpack (expected 2)
>
> Please will someone explain what I am doing wrong?
>
You're iterating over the keys. What you want is to iterate over
"fields.items()" which gives the key/value pairs.

> Also I would like to ask how I could print the ranges in the order they
> are defined.  Should I use a different dictionary class or could I add a
> field to the dictionary/list to achieve this?
>
Dicts are unordered. Try 'OrderedDict' from the 'collections' module.

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


Thread

Re: A basic dictionary question MRAB <python@mrabarnett.plus.com> - 2015-06-11 12:29 +0100

csiph-web