• Date and Time Converter

 

Hi, I am doing this mission called date and Time converter. Here is the link https://py.checkio.org/en/mission/date-and-time-converter and I have the following code:

import calendar
import datetime
def date_time(time: str) -> str:
    #replace this for solution
    dates, times= time.split()
    h,mi=times.split(':')
    d,m,y=dates.split('.')

    time="{:g}".format(float(d))+' '+ calendar.month_name[int(m)]
    +' '+y+' '+'year'+' '+"{:g} hours ".format(float(h))+"{:g} minutes ".format(float(mi))    

    return time

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!")

and I have the result in the attachment. I just don't understand how is my output different from the correct one?

.