I have a python list of time values that I extracted from a web log. I have the list in the format of %H:%M:%S. How would I sort the time values in ascending o
%H:%M:%S
sorted([tuple(map(int, d.split(":"))) for d in my_time_list])
Where each element in my_time_list is of the form you describe, for example:
>>> my_time_list ["03:12:08", "14:10:01"]