I\'m trying to convert times from 12 hour times into 24 hour times...
06:35 ## Morning 11:35 ## Morning (If m2 is anywhe
the most basic way is:
t_from_str_12h = datetime.datetime.strptime(s, "%I:%M:%S%p") str_24h = t_from_str.strftime("%H:%M:%S")