A method that makes a string uppercase
What is upper?
A whole number
What is an int?
A keyword that you use to check whether a condition is true
A library that contains common maths functions and constants
What is math?
The symbol that starts comments
What is #?
A method that adds an element to the end of a list
What is append?
A floating point number
What is a float?
A term to exit a loop
What is break?
A library that contains tools for randomness
What is random?
The way to define a function called function_name that takes no arguments
A method that removes an element from a position in the list
What is pop?
A collection of key-value pairs
What is a dictionary?
A loop that runs until a condition is false
What is while loop?
A library that contains time functions
What is time?
A way check for equality
What is ==?
A method that returns a list of the key-value pairs in a dictionary
What is items?
An immutable container
What is a tuple?
A keyword that exits you from a function, potentially with a value
What is return?
A library that contains specific containers
What is collections?
The way to create a list between 0 and 10
What is list(range(11))?
A method that returns a set containing the elements in only the first set and not the second
What is difference?
An unordered, mutable container of unique elements
What is a set?
A term to continue to the next iteration of a loop
What is continue?
A library that contains tools for working with the operating system
What is os?
The way to create a multiline string
What is """ """?