-
-
Save volgoweb/7808cac577b7b8d695adea0f617affe5 to your computer and use it in GitHub Desktop.
Dead simple python function for getting a yes or no answer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def yes_or_no(question): | |
reply = str(raw_input(question+' (y/n): ')).lower().strip() | |
if reply[0] == 'y': | |
return True | |
if reply[0] == 'n': | |
return False | |
else: | |
return yes_or_no("Uhhhh... please enter ") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment