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
Just sorted(time_list) works fine.
sorted(time_list)
>>> sorted(["14:10:01", "03:12:08"]) ["03:12:08", "14:10:01"]