Methods
Data types
Control flow
Libraries
Syntax
100

A method that makes a string uppercase

What is upper?

100

A whole number

What is an int?

100

A keyword that you use to check whether a condition is true

What is if?
100

A library that contains common maths functions and constants

What is math?

100

The symbol that starts comments

What is #?

200

A method that adds an element to the end of a list

What is append?

200

A floating point number

What is a float?

200

A term to exit a loop

What is break?

200

A library that contains tools for randomness

What is random?

200

The way to define a function called function_name that takes no arguments

What is def function_name()?
300

A method that removes an element from a position in the list

What is pop?

300

A collection of key-value pairs

What is a dictionary?

300

A loop that runs until a condition is false

What is while loop?

300

A library that contains time functions

What is time?

300

A way check for equality

What is ==?

400

A method that returns a list of the key-value pairs in a dictionary

What is items?

400

An immutable container

What is a tuple?

400

A keyword that exits you from a function, potentially with a value

What is return?

400

A library that contains specific containers

What is collections?

400

The way to create a list between 0 and 10

What is list(range(11))?

500

A method that returns a set containing the elements in only the first set and not the second

What is difference?

500

An unordered, mutable container of unique elements

What is a set?

500

A term to continue to the next iteration of a loop

What is continue?

500

A library that contains tools for working with the operating system

What is os?

500

The way to create a multiline string

What is """ """?