Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First of Date and Time Converter solution in Uncategorized category for Date and Time Converter by Oleg_Novikov
month = ['','January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
def date_time(time_str: str) -> str:
date, time = time_str.split(' ')
date_list = date.split('.')
answer = str(int(date_list[0])) + ' ' + month[int(date_list[1])] + ' ' + date_list[2] + ' year '
times = time.split(':')
hours, minutes = int(times[0]), int(times[1])
if hours == 1:
answer += str(hours) + ' hour '
else:
answer += str(hours) + ' hours '
if minutes == 1:
answer += str(minutes) + ' minute'
else:
answer += str(minutes) + ' minutes'
return answer
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!")
June 14, 2018