Skip to content

Instantly share code, notes, and snippets.

Created January 8, 2013 08:15
Show Gist options
  • Save anonymous/4482130 to your computer and use it in GitHub Desktop.
Save anonymous/4482130 to your computer and use it in GitHub Desktop.
def shut_down(s):
if s == "yes" or s == "YES" or s == "Yes":
return "Shutting down..."
elif s == "No" or s == "no" or s == "NO":
return "Shutdown aborted!"
else:
return "Sorry, I didn't understand you."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment