Assume the following statement appears in a program:
mylist = []Which of the following statements would you use to add the string 'Labrador' to the list at index 0?
a. mylist[0] = 'Labrador'b. mylist.insert(0, 'Labrador')c. mylist.append('Labrador')d. mylist.insert('Labrador', 0)
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.