Skip to content

Instantly share code, notes, and snippets.

@codycodes
Last active March 11, 2021 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codycodes/e9d7afc53b177b87135721e4a453da74 to your computer and use it in GitHub Desktop.
Save codycodes/e9d7afc53b177b87135721e4a453da74 to your computer and use it in GitHub Desktop.
Stenography Number Keys Memorizer
keys = "OSTPHAFPLT".lower()
i = 0
while i < len(keys):
currentLetter = input(f'What is the {i} key for the steno number 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