Advertisement
DEP21

Untitled

May 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. print("Let's have some fun!")
  2. count = 0
  3. guess = input("Guess my name (hint female beginning with 'd') ")
  4. while guess != "doris":
  5. guess = input("Incorrect! - guess again ")
  6. count = count + 1
  7. print("Well done! You did it after " + str(count) + " guesses!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement