Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Using time module solution in Clear category for Time Converter (12h to 24h) by quarkov
import time
def time_converter(now):
return time.strftime('%H:%M', time.strptime(now.replace('.', ''), '%I:%M %p'))
May 24, 2018
Comments: