Printing
Decisions
Variables
Loops
Functions
100

A comma between print items inserts this into the output.

What is a space?

100

It is always needed to end an if statement.

What is a colon?

100

This variable type is for whole numbers.

What is int?

100

Type of loop that might create an endless loop.

What is while?

100

Keyword used to start a Python function definition.

What is def?

200

This operator cancels a print statements newline. 

What is end?

200

if x % 2 == 1:  Evaluate this when x = 10.

What is False?

200

This variable type is for numbers with decimal places.

What is float?

200

It's used to specify how many times a for loop cycles. 

What is range?

200

Keyword used to access a function defined in a different file.

What is import?

300

This function is used to display currency output.

What is format?

300

What is the Python keyword for else if?

What is elif?

300

Term describing a variable used for a running total. 

What is accumulator?

300

This is a pretest loop.

What is a while loop?

300

Keyword that can "toss" a value back to another function.

What is return?

400

This operator can control what separates items in printed output.

What is sep?

400

This group of operators includes and or and not.

What is logical?

400

Variable type used to store a name or address.

What is string?

400

It's a count-controlled loop.

What is a for loop?

400

This type of function doesn't return a value.

What is void?

500

print(Hello world) will crash because this is missing.

What are quotes?

500

This term describes the values True and False.

What is Boolean?

500

Describes a variable visible only within a function.

What is local?

500

Term describing loops within loops.

What is nested?

500

Random module function that returns an integer.

What is randint?