Functions
Loops + Random
Conditionals
Lists
Arithmetic
200

The keyword every function has to start with

What is def?

200

The name of a loop that runs for a set amount of times

What is a for loop?

200

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?

200

What symbols let you know that something is a list?

What is []?

200

What symbol(s) allows you to compare if variable one is smaller than or equal to variable two?

What is <=?

400

What is a variable?

An object that stores a value

400

The name of a loop that runs until a certain condition is met

What is a for loop?

400

What does an indent after an if statement mean?

What is the indented code that will run when the if statement is True?

400

The function used to get the length of a list

What is len()?

400

What is printed into the console when print(“5”+”9”) is run?

What is 59?

500

What are the parameters for this example function? → def addition(first_number, second_number)

What are first_number, second_number?

500

How do you make a range of 0 to 9 with a step count of 2?

What is range(0,10,2)?

500

True or False: Elif can be used without an else

What is True?

500

How would you remove the last value of a list and return it?

What is .pop()?

500

What does ** do?

What is returns the result of the first number to the power of the second number (ex: 2 ** 3 = 8)?

800

What does a function return if there is no return statement in the function?

What is None?

800

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?

800

What is returned from False and True?

What is False?

800

The function used to add values to a list

What is .append()?

800

What does % do?

What is returns the remainder (ex: 5 % 3 = 2)?

1000

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?

1000

What is an example of an iterable?

What are lists, range, string?

1000

DAILY DOUBLE:

What is returned from 10 and 0?

1000

a = [3, 4, “Hello”, True, “Python”] – The value of a[6:]

What is []?

1000

What does // do?

What is chops off the remainder of the result (ex: 5 // 3 = 1)?

M
e
n
u