Skip to content

Instantly share code, notes, and snippets.

@manuphatak
Last active August 29, 2015 14:16
Show Gist options
  • Save manuphatak/4e7e1db47a0a72271aa3 to your computer and use it in GitHub Desktop.
Save manuphatak/4e7e1db47a0a72271aa3 to your computer and use it in GitHub Desktop.
# coding=utf-8
def is_valid(input_):
"""validation rules"""
return input_ in '012345ABC'
while True:
choice = raw_input()
if is_valid(choice):
break
# TODO do stuff with choice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment