Suppose I have the following list:
list = [{'a': 1, 'b': 2}, {'c': 3, 'd': 4}, {'e': 5, 'f': 6}]
How do I access a particular value of key say d?
|
Suppose I have the following list:
How do I access a particular value of key say |
||||
|
Index the list then the dict.
|
|||
|
|
|
You haven't provided enough context to provide an accurate answer (i.e. how do you want to handle identical keys in multiple dicts?) One answer is to iterate the list, and attempt to get 'd'
Another answer is to access the dict directly (by list index), though you have to know that the key is present
|
|||
|
First of all don't use 'list' as variable name. If you have simple dictionaries with unique keys then you can do the following(note that new dictionary object with all items from sub-dictionaries will be created):
Otherwise:
Or very base:
|
|||||||||||
|
|
|
If you know which
|
|||||||||||
|
list[1]['d']? – Matt Ball Jun 29 '11 at 14:03