Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Date and Time Converter by WannerJohannes
import datetime as dt
def date_time(time: str) -> str:
d=dt.datetime.strptime(time, "%d.%m.%Y %H:%M")
pl_hours = 's'
pl_minutes = 's'
if d.hour == 1: pl_hours = ''
if d.minute == 1: pl_minutes = ''
return '{0:%e} {0:%B} {0:%Y} year {1} hour{3} {2} minute{4}'.format(d, d.hour, d.minute, pl_hours, pl_minutes).strip()
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 26, 2020