A variable that contains a whole number
What is an integer?
The correct piece of code to use for repeating a certain number of times in Python
What is for counter in range():?
A variable that contains words or text
What is a string?
The correct piece of code to use for repeating forever in Python
What is while True:?
A variable that is either True or False
What is a boolean?
A line of code used to organize chunks of code, or to prevent there being duplicate code in different parts of the program
What is def function():?
A variable that contains a number with a decimal point
What is a float?
The correct code to check when the variable "answer" is equal to "yes"
What is if answer = "yes":?
A variable that is contained within an object, such as a sprite
What is an attribute?
The keyword to tell python to ignore an empty loop or function
What is pass?