Variable Types
What's That Code?
100

A variable that contains a whole number

What is an integer?

100

The correct piece of code to use for repeating a certain number of times in Python

What is for counter in range():?

200

A variable that contains words or text

What is a string?

200

The correct piece of code to use for repeating forever in Python

What is while True:?

300

A variable that is either True or False

What is a boolean?

300

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():?

400

A variable that contains a number with a decimal point

What is a float?

400

The correct code to check when the variable "answer" is equal to "yes"

What is if answer = "yes":?

500

A variable that is contained within an object, such as a sprite

What is an attribute?

500

The keyword to tell python to ignore an empty loop or function

What is pass?