Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 14, 2019 22:34
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 codecademydev/4ddb206d3211c57a49c8dd6a05f0702f to your computer and use it in GitHub Desktop.
Save codecademydev/4ddb206d3211c57a49c8dd6a05f0702f to your computer and use it in GitHub Desktop.
Codecademy export
# We've defined the variable "meal" here to the name of the food we ate for breakfast!
meal = "bigmac"
print(meal)
# Printing out breakfast
Breakfast ="cereal"
print(Breakfast)
# Now update meal to be lunch!
lunch = "sloppy joe"
print(lunch)
# Printing out lunch
lunch = "steak"
print(lunch)
# Now update "meal" to be dinner
meal = dinner
# Printing out dinner
dinner= "turkey"
print(dinner)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment