A comma between print items inserts this into the output.
What is a space?
It is always needed to end an if statement.
What is a colon?
This variable type is for whole numbers.
What is int?
Type of loop that might create an endless loop.
What is while?
Keyword used to start a Python function definition.
What is def?
This operator cancels a print statements newline.
What is end?
if x % 2 == 1: Evaluate this when x = 10.
What is False?
This variable type is for numbers with decimal places.
What is float?
It's used to specify how many times a for loop cycles.
What is range?
Keyword used to access a function defined in a different file.
What is import?
This function is used to display currency output.
What is format?
What is the Python keyword for else if?
What is elif?
Term describing a variable used for a running total.
What is accumulator?
This is a pretest loop.
What is a while loop?
Keyword that can "toss" a value back to another function.
What is return?
This operator can control what separates items in printed output.
What is sep?
This group of operators includes and or and not.
What is logical?
Variable type used to store a name or address.
What is string?
It's a count-controlled loop.
What is a for loop?
This type of function doesn't return a value.
What is void?
print(Hello world) will crash because this is missing.
What are quotes?
This term describes the values True and False.
What is Boolean?
Describes a variable visible only within a function.
What is local?
Term describing loops within loops.
What is nested?
Random module function that returns an integer.
What is randint?