This is the list in Python:
a = [{a:3,b:4}, {c:14,d:24}]
How can I create a list consisting only from the values of the dictionaries?
Like this:
a1=[3,4,14,24]
I have made this with a for loop, but is there an other way of doing this?
|
This is the list in Python: a = [{a:3,b:4}, {c:14,d:24}] How can I create a list consisting only from the values of the dictionaries? Like this: a1=[3,4,14,24] I have made this with a for loop, but is there an other way of doing this? |
|||||||||||
|
|
Since the order apparently doesn't matter:
You can get the values in a listcomp:
And then flatten this using a nested listcomp:
which is equivalent to
If you really don't even want the word
[Update:] Some performance comparisons (mostly for information's sake about the scaling at large N):
|
|||||||||||
|
|
This can be done in asingle line using list comprehensions :
|
||||
|
|
Bear in mind that Python dictionaries are unordered. This means that the ordering of keys (and their values) within each of the dictionaries is not guaranteed. |
|||
|
|
|
Using
|
|||
|
|