Created
December 3, 2018 08:54
-
-
Save Mebus/5bd8f5dba45e000c5a3e85202f461902 to your computer and use it in GitHub Desktop.
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
alphabet = "абвгдеёжзийклмнопрстуфхцчшщъыьэюя" | |
print(len(alphabet)) | |
aufgaben = [ | |
[31, 12, 16, 15, 16, 14, 10, 19, 20], | |
[19, 6, 12, 18, 6, 20, 1, 18, 30], | |
[1, 5, 3, 16, 12, 1, 20], | |
[10, 15, 8, 6, 15, 6, 18], | |
[5, 16, 24, 6, 15, 20], | |
[8, 21, 18, 15, 1, 13, 10, 19, 20], | |
] | |
for a in aufgaben: | |
l = "" | |
for k in a: | |
l = l + (alphabet[k - 1]) | |
print(str(a) + " -> " + l) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment