Guest User

Untitled

a guest
Oct 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. def choose():
  2.     option = input()
  3.     while(not isinstance(option, int)):
  4.             option = input()
  5.     else:
  6.             return option
Add Comment
Please, Sign In to add comment