def is_leap_year(year): """This functon returns True if year is a leap year, returns False otherwise""" if year % 4 == 0: return True return False