Guest User

Untitled

a guest
Oct 22nd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. answer = "'You need to enter one alphabetic character which you haven't
  2. already guessed. Try again'"
  3. counter = 0
  4. p = [x.lower() for x in past_guesses]
  5. if len(p) != (set(past_guesses)):
  6. result = answer
  7. else:
  8. result = 'Good guess'
  9. return result
Add Comment
Please, Sign In to add comment