We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
defis_leap(year):leap=False# Write your logic hereifyear>=1900andyear<=10**5:ifyear%4!=0:leap=Falseelifyear%4==0andyear%100!=0:leap=Trueelifyear%4==0andyear%100==0andyear%400!=0:leap=Falseelifyear%4==0andyear%100==0andyear%400==0:leap=Truereturnleapyear=int(input())print(is_leap(year))
Write a function
You are viewing a single comment's thread. Return to all comments →