第26507题
已知Python列表lstA = [6, 7, 8, 9],选出删除值为8的元素的错误语句
A

lstA.remove(8)

B

lstA.pop(2)

C

del lstA[2]

D

lstA.del[2]

提交0次 正确率0.00%
答案解析