I need to have a dictionary which might have same names for some keys and return a list of values when referencing the key in that case. For example
print mydict['key']
[1,2,3,4,5,6]
|
I need to have a dictionary which might have same names for some keys and return a list of values when referencing the key in that case. For example
|
|||||||
|
|
For consistency, you should have the dictionary map keys to lists (or sets) of values, of which some can be empty. There is a nice idiom for this:
(A If you need the object to look more like a dictionary (i.e. to set a value by
I haven't tested this. |
||||
|
|
|
You can use:
Then during runtime:
Edited as per @Ben's comment:
|
|||||||
|
|
You can also try
Then:
Web frameworks like Pylons are using this library to handle HTTP query string/post data, which can have same-name keys. |
|||
|
|