Guest User

Untitled

a guest
Jul 22nd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. """A short program using user input in an interactive loop"""
  2. q = False
  3. while q == False:
  4. user_quit = input('Quit?(y/n): ')
  5. if user_quit == 'y':
  6. q = True
Add Comment
Please, Sign In to add comment