第15050题 单选
给定Python列表l = [1, 2, 3, 4, 5],以下哪个操作可以移除列表的第一个元素?
A

l.pop(1)

B

l.remove(1)

C

del l[1]

D

l.clear()

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