Skip to content

Instantly share code, notes, and snippets.

@armanbilge
Created January 18, 2015 09:57
Show Gist options
  • Save armanbilge/980568bfc9f45f598d3f to your computer and use it in GitHub Desktop.
Save armanbilge/980568bfc9f45f598d3f to your computer and use it in GitHub Desktop.
from string import ascii_lowercase as alphabet
f = lambda i: alphabet[i] if i < 26 else alphabet[i / 26 - 1] + alphabet[i % 26]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment