I have a list as follows.
[(5,), (2,), (4,), (1,), (3,), (6,), (7,), (8,)]
How can I sort the list to get
[1,2,3,4,5,6,7,8]
or
[8,7,6,5,4,3,2,1]
?
|
|
|
Convert the list of tuples into a list of integers, then sort it:
See it on codepad |
|||||||||||
|
|
I'll give you an even more generalized answer:
which can sort not only what you've asked for but also any list of arbitrary length tuples. |
|||
|
|
|
||||
|
|