answers/passed (4)
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 = []