What do you call an expression that is either true or false?
What is Boolean?
A chunk of code that repeats a certain number of times.
What is a loop?
x = 2.15. What type of variable is this?
What is a float?
What function would you use to determine the length of a list?
What is the len() function?
How many times would this run?
for i in range(0,3)?
What is 3 times?
x = 7. What type of variable is this?
What is an integer?
What is an function call /function execution?
What are if, elif, and else?
What is this section of code?
For i in range(0,3):
What is
The variable listed inside the parentheses in the function definition
What is a parameter?
What is a variable that can be used anywhere inside your program? Not just within a specific function.
What is a global variable?
How is accessing functions from an imported module different from using the built-in functions?
What is using the dot notation?
Name 3 different types of conditions that can be used in while loops.
What is greater than, less than, or equal to?
What is the name of the function that allows you to get information from the user?
What is the input() function?
Name the three symbols for addition, subtraction and multiplication in python.
What is a +, -, *?
A block of code that allows you to execute specific blocks of code based on whether a condition is true or false
What is conditional statements?
These two operators are executed Right-to-Left
What is ** and =?
What will this section of code print out?
for i in range(0,3):
print("Hello World")
What is the
Hello World
Hello World
Hello World
?
This line of code allows you to insert multiple different values into one variable.
What is a list?
This operator finds the remainder
What is % operator?
A section of code that can be reused multiple times.
What is a function?
This section of code runs until a statement is false.
What is a while loop?
User input is always of ________ data type
String
What functions allows you to edit a list?
What is append()?
This data type allows you to store numbers with decimal places?
What is a float?