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