• + 2 comments

    def is_leap(year): leap = False

    if year%4==0:
        if year%100==0:
            if year%400==0:
                leap=True
    else:
        leap=False 
    

    Iaam failing 1 test case for 1992 , what is the problem?

    return leap
    

    year = int(input())