Skip to content

Instantly share code, notes, and snippets.

@ppshobi
Created September 29, 2016 07:23
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 ppshobi/14cfeee328192337a8a095768cedc3c7 to your computer and use it in GitHub Desktop.
Save ppshobi/14cfeee328192337a8a095768cedc3c7 to your computer and use it in GitHub Desktop.
Characters to numbers mapping- hax.tor.hu warmup challenge 5
import string
chars = string.ascii_lowercase
start=86 #since the letter a => 86
for i in chars:
print(start,"=>", i)
start=start-1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment