Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Dumb solution in Clear category for Date and Time Converter by obone
from calendar import month_name
def date_time(time: str) -> str:
time = "{} {} {} year {} hour{} {} minute{}".format(
int(time[0:2]),
month_name[int(time[3:5])],
int(time[6:10]),
int(time[11:13]),
's' if int(time[11:13]) != 1 else '',
int(time[14:16]),
's' if int(time[14:16]) != 1 else '')
return time
June 27, 2019