Say you have a dictionary as shown:
d = { 'a': ['s','b'], 'b': ['x1','y1','z1'] }
How could i produce the following output:
s, x1, b, y1, z1
Thanks
|
Say you have a dictionary as shown:
How could i produce the following output:
Thanks | ||||
|
show 2 more comments
feedback
|
(N.B. Explanation:
You need With intermediate steps:
| ||||
|
feedback
|
|
While Im not stoked about the appending and whatnot, this at least gets your exact result.
| |||||||||||
feedback
|
|
I think what he wants is first print all the first element of different values in dict & then second and so on until minimum of a list is reached. Then, he just prints the remaining.
| |||||
feedback
|
|
maybe
| |||
feedback
|
|
I can't believe there are so many answers to such a vague question! But then again I'm no better. :-) My first thought was to do this the way that had already been done using izip_longest, but I wasn't a fan of using None as a special value-- what if None was an element of the list, after all? So instead, and assuming the "standard interpretation", how about:
This only requires that the keys be sortable, and if they're not then we're wrong anyway. (Okay, to be perfectly honest, I first came up with | |||
|
feedback
|
That will give you the answer you want. I'm not sure what you were looking for in particular. | |||
|
feedback
|
|
If I'm reading this correctly:
Of course this assumes every value in d is iterable. | |||
|
feedback
|
|
Your question is a little unclear to me but are you trying to achieve this
| |||||||
|
feedback
|
Can't help you much more without knowing more about your problem. Of course there are nice ways of outputting If you're wanting order of keys and values, You could try something such as:
| |||
|
feedback
|
|
Here's an answer just as lazy, vague, and helpful as the OP's question. Also, this smells like a homework question; if it is, it should be mentioned in the question.
Please clarify your question if you want more helpful answers. | ||||
|
feedback
|
print x[0],y[0],z[0],'\n',x[1],y[1],z[1]... wherex,yandzare lists(in your case the values in your dictionary. If I am right look for iterating over multiple lists in python. You should usemaporzip– Lelouch Lamperouge Jan 26 at 0:56