Skip to content

Instantly share code, notes, and snippets.

@InvisibleRasta
Last active November 16, 2018 02:15
Show Gist options
  • Save InvisibleRasta/643c8fa2453c73b6da873e54b9deeb00 to your computer and use it in GitHub Desktop.
Save InvisibleRasta/643c8fa2453c73b6da873e54b9deeb00 to your computer and use it in GitHub Desktop.
Variables and Print
# We've defined the variable "meal" here to the name of the food we ate for breakfast!
meal = "An english muffin"
# Printing out breakfast
print("Breakfast:")
print(meal)
# Now update meal to be lunch!
meal = "Pizza"
# Printing out lunch
print("Lunch:")
print(meal)
# Now update "meal" to be dinner
meal = "Salad"
# Printing out dinner
print("Dinner:")
print(meal)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment