A span of items that are taken from a sequence.
What is a slice.
A snake that is 3.14 meters long.
What is a Python.
What the third number in a string slicing bracket represents.
What is the step value.
The method used to add a single item to a set.
What is the method add.
This provides a set of standard diagrams for graphically depicting OOP systems.
What are Unified Modeling Language (UML) diagrams.
This method is commonly used to add items to a list.
What is the append method.
These type of statement will repeat a block of code.
What are loops.
This exception occurs when you attempt to use an index that is out of range.
What is an IndexError.
Every dictionary is comprised of two parts.
What is a key and a value.
The term which refers to an object's ability to take different forms.
What is Polymorphism.
The exception raised when a search item is not in the list being searched.
What is a ValueError exception.
These statements explain code.
What are comments.
The valid indexes for the string 'Imagine'
What is 0 through 6.
A set which contains all the elements of two sets.
What is a union.
------------------------
--- DAILY DOUBLE ---
------------------------
What a subclass is also known as.
This is a concise expression that creates a new list by iterating over the elements of an existing list.
What is a comprehension.
This will give an object properties.
What is a class
This operator will produce a repetition of characters.
What is the *.
This method removes all the elements in the dictionary.
What is the clear method.
A method that returns a value from a class's attribute but does not change it.
What is an accessor.
A library you can use in Python to create two-dimensional charts and graphs.
What is the matplot library.
This data type will store unique values.
What is a set.
How Python passes objects to a function.
What is by Reference.
The method that returns a value associated a specific key and if found, it will remove the element from the dictionary.
What is the pop method.
What a line with an open arrowhead in an UML diagram from a subclass to a superclass represents.
What is inheirtance.