How to sort a list of time values?
list, python, sorting, time
Solution
Just `sorted(time_list)` works fine.
>>> sorted(["14:10:01", "03:12:08"])
["03:12:08", "14:10:01"]
Problem
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 order?