Variables & Data Types
Loops & Iteration
Lists
100

This data type stores whole numbers.

What is an Integer?

100

This loop is typically used when the number of iterations is known.

What is a for loop?

100

This data structure stores multiple values in one variable.

What is a list?

200

This data type stores decimal numbers.

What is a float?

200

This loop runs as long as a condition is true.

What is a while loop?

200

This method adds an element to the end of a list.

What is append()?



300

This function converts a value to a string.

What is str()?

300

This keyword stops a loop immediately.

What is break?

300

This index refers to the first element in a list.

What is 0?

400

This operator performs exponentiation in python.

What is **?

400

This keyword skips the rest of the current loop iteration.

What is continue?
400

This method removes an element from a list by value.

What is remove()?

500

This function returns the type of a variable.

What is type()?

500

This function generates a sequence of numbers for looping.

What is range()?
500

This function reurns the number of elements in a list.

What is len()?

M
e
n
u