Syntax
Loops
Variables
100

The programming language we are programming in.

What is Python?

100

The word that is used for a certain type of loop that will run as long as a condition is true.

What is a while loop?

100

This punctuation is an assignment operator.

What is the equals sign? (=)

200

A character or thing that can do actions.

What is an object?

200

A while loop with the condition "True" which will run without stopping forever.

What is an infinite loop?

200

A holder for a value.

What is a variable?

300

An action that an object can do.

What is a function? 

or 

What is a method?

300

The punctuation that goes after the condition in the while loop.

What is a colon?

300

Information that is held inside a variable.

What is a value?

400

This punctuation mark separates an object and a function (or method).

What is a period?

400

The number of spaces to indent once inside the while loop.

What is 4?

400

A variable can be used as an argument inside of this.

What is a function (or method)?

500

These go at the end of a function (or method).

What are parentheses?

500

A block of code that repeats.

What is a loop?

500

The result of a function can be this.

What is a value?

M
e
n
u