Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One by One solution in Clear category for Date and Time Converter by sawako.oono
def date_time(time: str) -> str:
monthdict = {1:"January", 2:"February", 3:"Marxh", 4:"April", 5:"May", 6:"June", 7:"July", 8:"August", 9:"September", 10:"October", 11:"November", 12:"December"}
Date = str(int(time[0:2]))
Month = monthdict[int(time[3:5])]
Year = time[6:10]+" year"
if int(time[11:13]) == 1:
Hour = str(int(time[11:13]))+" hour"
else:
Hour = str(int(time[11:13]))+" hours"
if int(time[14:16]) == 1:
Min = str(int(time[14:16]))+" minute"
else:
Min = str(int(time[14:16]))+" minutes"
ans = Date+" "+Month+" "+Year+" "+Hour+" "+Min
return ans
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!")
May 20, 2021
Comments: