Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. while whatever:
  2. print(instructions)
  3. while True:
  4. raw = input()
  5. if raw.isdigit():
  6. choice = int(raw)
  7. if 1 <= choice <= 5:
  8. break
  9.  
  10. choice
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement