Created
September 29, 2016 07:23
-
-
Save ppshobi/14cfeee328192337a8a095768cedc3c7 to your computer and use it in GitHub Desktop.
Characters to numbers mapping- hax.tor.hu warmup challenge 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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