首页题库练习题目详情
Python程序设计单选题中等

如何删除列表中第一个出现的元素'apple'?

Alist.remove('apple')
Blist.pop('apple')
Cdel list['apple']
Dlist.delete('apple')