Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- used_letters = []
- command = input()
- while command != "end":
- used_letters.append(command)
- if command in key_letters:
- command = " "
- command = input()
- print(used_letters)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement