Advertisement
pacho_the_python

Untitled

Oct 15th, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. used_letters = []
  2. command = input()
  3. while command != "end":
  4.     used_letters.append(command)
  5.     if command in key_letters:
  6.         command = " "
  7.     command = input()
  8.  
  9. print(used_letters)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement