I have a list like this:
[('100701260', '10:23:15'),
('100701260', '07:52:27'),
('100700853', '09:26:52')]
Is it possible to sort it by time like this:
[('100701260', '07:52:27'),
('100700853', '09:26:52'),
('100701260', '10:23:15')]
I know it is possible to sort by date when we have a list. But I am not sure about a list of tuples.