Kizspy Question: 3
(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. a[2:2] = []
B. a[2]=[]
PUOWERELDW.Com
C. del a[2]
D. a.remove(3)
à so that it equals [1, 2, 4, 5]: