Skip to content

Instantly share code, notes, and snippets.

@stevencombs
Last active December 20, 2015 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevencombs/6202749 to your computer and use it in GitHub Desktop.
Save stevencombs/6202749 to your computer and use it in GitHub Desktop.
# Shutdown Function
# A Codecademy Python (Review: Functions) assignment
# Dr. Steven B. Combs, coding novice
def shut_down(s):
if s.lower() == "yes":
return "Shutting down..."
elif s.lower() == "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