Skip to content

Instantly share code, notes, and snippets.

@micaleel
Created November 1, 2013 17:21
Show Gist options
  • Save micaleel/7268726 to your computer and use it in GitHub Desktop.
Save micaleel/7268726 to your computer and use it in GitHub Desktop.
def shut_down(s):
if s.upper() == "YES":
return "Shutting down"
elif s.upper() == "NO":
return "Shutdown aborted"
else:
return "Sorry, I don't understand you."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment