Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
strptime(), strftime(), plurals solution in Clear category for Date and Time Converter by vinicius.rznd
import datetime
def date_time(time: str) -> str:
dat = datetime.datetime.strptime(time, '%d.%m.%Y %H:%M')
# Debbuger
# print(dat.strftime("%-d %B %Y year %-H hours %-M minutes"))
# plural fix
hours = "hours" if int(dat.strftime("%-H")) != 1 else "hour"
minutes = "minutes" if int(dat.strftime("%-M")) != 1 else "minute"
# add a "-" between the % and the char to get rid of the anoying leading zeroes
return dat.strftime(f"%-d %B %Y year %-H {hours} %-M {minutes}")
if __name__ == '__main__':
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!")
Dec. 22, 2020