Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #92470 > unrolled thread
| Started by | MRAB <python@mrabarnett.plus.com> |
|---|---|
| First post | 2015-06-11 12:29 +0100 |
| Last post | 2015-06-11 12: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.
Re: A basic dictionary question MRAB <python@mrabarnett.plus.com> - 2015-06-11 12:29 +0100
| From | MRAB <python@mrabarnett.plus.com> |
|---|---|
| Date | 2015-06-11 12:29 +0100 |
| Subject | Re: A basic dictionary question |
| Message-ID | <mailman.391.1434022173.13271.python-list@python.org> |
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 top | Article view | comp.lang.python
csiph-web