Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
split everywhere solution in Clear category for Date and Time Converter by titaevskaya
def date_time(time: str) -> str:
month_dict = { '01' : "January",
'02' : "February",
'03' : "March",
'04' : "April",
'05' : "May",
'06' : "June",
'07' : "July",
'08' : "August",
'09' : "September",
'10' : "October",
'11' : "November",
'12' : "December"
}
day = int(time.split('.')[0])
month = time.split('.')[1]
year = time.split('.')[2].split()[0]
hour = int(time.split('.')[2].split()[1].split(':')[0])
minute = int(time.split('.')[2].split()[1].split(':')[1])
return "{} {} {} year {} {} {} {}".format(day, month_dict[month],
year, hour, 'hour' if hour == 1 else 'hours',
minute, 'minute' if minute == 1 else 'minutes' )
if __name__ == "__main__":
print("Example:")
print(date_time("01.01.2000 00:00"))
# These "asserts" using only for self-checking and not necessary for auto-testing
assert (
date_time("01.01.2000 00:00") == "1 January 2000 year 0 hours 0 minutes"
), "Millenium"
assert (
date_time("09.05.1945 06:30") == "9 May 1945 year 6 hours 30 minutes"
), "Victory"
assert (
date_time("20.11.1990 03:55") == "20 November 1990 year 3 hours 55 minutes"
), "Somebody was born"
print("Coding complete? Click 'Check' to earn cool rewards!")
Aug. 26, 2021