#4: Implementing Multiplikative Chiffre

This commit is contained in:
2021-10-15 16:10:44 +02:00
parent c6a72d32e4
commit 588507bcf5
3 changed files with 66 additions and 6 deletions
+1 -6
View File
@@ -8,14 +8,9 @@ def get_letter_at_index(idx: int, capital: bool = False):
return LETTERS[idx] if capital else LETTERS[idx].lower()
def get_index_of_letter(letter: str):
if letter.upper() not in LETTERS:
raise AttributeError
return LETTERS.index(letter.upper())
if __name__ == '__main__':
print(get_letter_at_index(25, True))
print(get_index_of_letter('ä'))