This loop executes statements repeatedly as long as the tested condition remains true
What is a while loop?
The logical operators.
Operation symbol for obtaining the remainder.
What is %?
It stores data with items that can change.
What is a list?
Stores data without an order.
What is a set?
This loop is counter controlled.
What is a for loop?
The definition of if statement.
What is a conditional statement that executes a body if condition is true?
Operation symbol to do integer division.
It stores data where items can't be changed.
What is a tuple?
It stores data with keys and values.
What are dictionaries?
What is a sentinel value?
The comparison operators.
What is >, >=, <, <=, ==, !=?
The value of 1 + 2**3 // 3.
Syntax of creating a list.
What is variable = [a, b, c].
The syntax for creating an empty set.
Using range, the numbers 1-10 will be printed out.
What is range(1,11)?
The operators used as a test in if statements conditions.
What are comparison and logical operators?
An error during when the program is running.
What is a runtime error?
Syntax of creating a tuple.
What is tuple = (a, b, c)
The syntax for creating an empty dictionary.
What is variable = {}?
The syntax for looping through a string.
What is for element in string?
The syntax of an if-elif-else statement.
What is if condition: body, elif condition: body, else: body?
What is a logic error?
It stores data with duplicates allowed.
What is list and tuple?
The data types allowed for keys.
What are integers and strings?