I have a list a = ['a1', 'b1', 'c1', 'd1', 'a2', 'b2', 'c2', 'd2',]
How can I get list b = ['a1,', 'a2', 'b1', 'b2', 'c1', 'c2', 'd1', 'd2'] without using .sorted()?
Thanks!
|
Output:
In Python 3.X you have to change |
|||||||||||
|
|
There is no
otherwise, maybe you can clarify your question further. |
|||||||
|
|
It seems a bit arbitrary, not to use Here is how you define a key for sorting strings that represent playing cards (a1 through d13) by suit, then rank:
Is that what you need? |
||||
|
|
without using sorted, but expensive way.
split it to 2 parts
zip it
and flatten it (with itertools here)
itertools returns iterator, so If you need list, wrapped it with list(), and assigned it to b
|
|||
|
|
|
just |
|||
|
|
You can also sort it this way
|
|||
|
|