Skip to content

Instantly share code, notes, and snippets.

@takuma7
Created March 17, 2014 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takuma7/9601138 to your computer and use it in GitHub Desktop.
Save takuma7/9601138 to your computer and use it in GitHub Desktop.
# coding: utf8
print [x for x in range(1900, 2201) if x%4 == 0 and x%100 != 0 or x%400 == 0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment