Skip to content

Instantly share code, notes, and snippets.

@richardbwest
Last active July 20, 2016 10:26
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/087d84b6fb0dd619dff17dc5aac544be to your computer and use it in GitHub Desktop.
Save richardbwest/087d84b6fb0dd619dff17dc5aac544be to your computer and use it in GitHub Desktop.
python if example with following code.py
answer = input("Do you want me to sing a song?")
if answer == "yes":
print("La! la! la! la! la!") #This code is indented!
print("Goodbye!")# This code is not indented!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment