Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
strf the strp solution in Clear category for Time Converter (12h to 24h) by Fermax
from datetime import datetime
def time_converter(time):
return datetime.strftime(datetime.strptime(time.replace('.',''), '%I:%M %p'), '%H:%M')
July 24, 2018