The operator (symbol) used to save a value into a variable.
What is the assignment operator (=)?
The function used to display text to the console.
What is the print() function?
An expression that evaluates to either True or False.
What is a Boolean expression?
A structure that executes a block of code repeatedly until a Boolean expression evaluates to False.
What is a while loop?
Other names for functions.
What are methods, procedures, routines, and subroutines?
The datatype used to save whole numbers.
What is an integer or int?
The function used to ask for user input.
What is the input() function?
An operator that determines if two values are equal.
A loop that will never end.
What is an infinite loop?
The keyword used to define a new function in Python
The datatype used to store text data.
The function used to convert string data to whole number data.
What is the int() function?
A structure that executes a block of code when an expression is True, or skips it if that same expression is False.
What is an if statement?
To preform repeatedly (the answer is not "loop").
What is iterate?
A function's inputs
What are parameters?
The datatype used to store decimal numbers.
What is a float?
The function used to convert string data to decimal number data.
What is the float() function?
An alternative statement that is executed when the Boolean expression of an if statement is False.
What is an else statement?
A Boolean variable used to control a while loop.
What is a sentinel value?
The statement used to return a value from a function
What is a return statement?
The mathematical operator that gives us the remainder from a division.
What is the modulo operator?
Three things that all (useful) programs should be able to do.
What is taking user input, processing data, and outputting/displaying the data?
A logical operator that is only True when both its operands resolve to True.
What is the and operator?
A structure that traverses a range (in other words, "loops a specific number of times").
What is a for loop?
The advantages of functions.
What are code reusability, maintainability, readability, and decomposition?