Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. from sys import exit
  2. def playAgain():
  3. print('Do you want to play again? (yes or no)')
  4. while True:
  5. if input("> ").lower().startswith('yes')== True:
  6. start()
  7. elif input("> ").lower().startswith('no')== True:
  8. print ('Bye for now')
  9. exit(0)
  10. else:
  11. print ("I don't understand what you mean?")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement