-
-
Save CesarNog/022a6d0a0a0f6dcf63bdd5a40f315320 to your computer and use it in GitHub Desktop.
Dead simple python function for getting a yes or no answer.
This file contains 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