I have a list that is filled with HTML elements. I also have a list filled with date/times, which is parallel to the HTML list.
How can I sort the HTML list based on the time/date list? The time/date is in a timestamp format.
|
|
|
You can use
The result will be two tuples which you can convert to lists if you prefer. |
|||||||||||
|
|
Zip the two lists up into tuples, sort, then take the HTML back out of the tuple:
|
|||
|
|
|
Enumerate will give you a list of (index,item) tuples for each item in the list. You can sort this using the index to read the sort key from the timestamps list. Then peel off the html elements:
What could be simpler? |
|||
|
|