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.
year= int(input())
if(year%4==0 and year%100!=0)or(year%400==0):
print(year,"is a leap year")
else:
(year,"not a leap year") mine code is true but n the end there is a code which cant be erased so the submit code option is showing failure so did anybody have an idea?
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Write a function
You are viewing a single comment's thread. Return to all comments →
year= int(input()) if(year%4==0 and year%100!=0)or(year%400==0): print(year,"is a leap year") else: (year,"not a leap year") mine code is true but n the end there is a code which cant be erased so the submit code option is showing failure so did anybody have an idea?