Kizspy | Question: 7 (Choose 1 answer)
List a is defined as follows:
a = [1, 2, 3, 4, 5]
Select all of the following statements that remove the middle element 3 from a so that it equals [1, 2, 4, 5]:
A. a[2:2] = [[
B. a[2] = []
C. del a[2]
D. a.remove(3)