Skip to content

Instantly share code, notes, and snippets.

@richardbwest
Last active July 20, 2016 10:25
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 richardbwest/b47647013cb8fbc4b288b42a9399301d to your computer and use it in GitHub Desktop.
Save richardbwest/b47647013cb8fbc4b288b42a9399301d to your computer and use it in GitHub Desktop.
A python script to decide what to do for the day
print("Good morning, I am your wake-up assistant!")
day = input("Is it a schoolday or the weekend?")
if day == "schoolday":
print("You had better get dressed then!")
else:
print("Go back to bed you fool!")
print("Goodbye from me, see you tomorrow!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment