Last active
March 11, 2021 16:43
-
-
Save codycodes/60b5db8f53f4bc1771f0d9b204465574 to your computer and use it in GitHub Desktop.
Stenography Layout Memorizer
This file contains hidden or 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
keys = "#STKPWHRAO*EUFRPBLGTSDZ".lower() | |
i = 0 | |
while i < len(keys): | |
currentLetter = input(f'What is the {i} key for the steno order?: ').lower() | |
if currentLetter == keys[i]: | |
i += 1 | |
else: | |
print(f"Sorry, that's incorrect! Currently we have: {keys[:i].upper()}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment