The keyword every function has to start with
What is def?
The name of a loop that runs for a set amount of times
What is a for loop?
What is the difference between == and =?
What is == compares if the two elements on the sides are the same and = stores a value to a variable name?
What symbols let you know that something is a list?
What is []?
What symbol(s) allows you to compare if variable one is smaller than or equal to variable two?
What is <=?
What is a variable?
An object that stores a value
The name of a loop that runs until a certain condition is met
What is a for loop?
What does an indent after an if statement mean?
What is the indented code that will run when the if statement is True?
The function used to get the length of a list
What is len()?
What is printed into the console when print(“5”+”9”) is run?
What is 59?
What are the parameters for this example function? → def addition(first_number, second_number)
What are first_number, second_number?
How do you make a range of 0 to 9 with a step count of 2?
What is range(0,10,2)?
True or False: Elif can be used without an else
What is True?
How would you remove the last value of a list and return it?
What is .pop()?
What does ** do?
What is returns the result of the first number to the power of the second number (ex: 2 ** 3 = 8)?
What does a function return if there is no return statement in the function?
What is None?
What is the difference between a for loop and a while loop?
What is in a for loop, you know how many times you want the loop to run, while in a while loop, you want it to run until it meets a certain condition?
What is returned from False and True?
What is False?
The function used to add values to a list
What is .append()?
What does % do?
What is returns the remainder (ex: 5 % 3 = 2)?
The difference between a parameter and an argument
What is a parameter is the variable in the header statement of a function, while an argument is the actual value passed in?
What is an example of an iterable?
What are lists, range, string?
DAILY DOUBLE:
What is returned from 10 and 0?
a = [3, 4, “Hello”, True, “Python”] – The value of a[6:]
What is []?
What does // do?
What is chops off the remainder of the result (ex: 5 // 3 = 1)?