Skip to content

Instantly share code, notes, and snippets.

@hoosteeno
Created November 26, 2013 22:50
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 hoosteeno/7667751 to your computer and use it in GitHub Desktop.
Save hoosteeno/7667751 to your computer and use it in GitHub Desktop.
Output some version numbers using a schema that might fit web products
year = '2014'
for month in range(1, 13):
month = '%02d' % month
for rel in range(1, 7):
print '%s-%s.%s' % (year, str(month), str(rel))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment