Skip to content

Instantly share code, notes, and snippets.

@codycodes
Last active March 11, 2021 16:43
Show Gist options
  • Save codycodes/60b5db8f53f4bc1771f0d9b204465574 to your computer and use it in GitHub Desktop.
Save codycodes/60b5db8f53f4bc1771f0d9b204465574 to your computer and use it in GitHub Desktop.
Stenography Layout Memorizer
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