Lesson 07: A Matter of Interpretation - nolenfelten/Codecademy-Python-Notes GitHub Wiki

A Matter of Interpretation The window in the top right corner of the page is called the interpreter. The interpreter runs your code line by line, and checks for any errors.

cats = 3

In the above example, we create a variable cats and assign it the value of 3.

Create a variable called spam and assign it the value of True. Create a variable called eggs and assign it the value of False.

spam = True
eggs = False