Skip to content

Instantly share code, notes, and snippets.

@ppeuchin
Created November 4, 2021 14:07
Show Gist options
  • Save ppeuchin/e53db914d5d6b94532d04b33bb74c0ce to your computer and use it in GitHub Desktop.
Save ppeuchin/e53db914d5d6b94532d04b33bb74c0ce to your computer and use it in GitHub Desktop.
given_year = 2044
if (given_year % 4 == 0) and (given_year % 100 != 0):
print("It is a leap year")
elif (given_year % 100 == 0) and (given_year % 400 == 0):
print("It is a leap year")
else:
print("It is not a leap year")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment