This term refers to an individual item in a list - CORRECT ANSWER Element
This is a number that identifies an item in a list - CORRECT ANSWER index
This is the first index in a list - CORRECT ANSWER 0
This is the last index in a list - CORRECT ANSWER The size of the list minus one
This will happen if you try to use an index that is out of range for a list - CORRECT ANSWER an
IndexError will occur
This function returns the length of a list - CORRECT ANSWER len
When the * operator's left operand is a list and its right oberand is an integer, the operator becoms this
- CORRECT ANSWER the repetition operator
This list method adds an item to the end of an existing list - CORRECT ANSWER append
This removes an item at a specific index in a list. - CORRECT ANSWER the del method
Assume the following statement appears in a program:
mylist = []
What statement would you use to add the string 'Labrador' to the list at index 0? - CORRECT ANSWER
mylist.insert(0, 'Labrador')