python 清單移除元素
python 刪除元素的幾種方式
python 刪除元素的幾種方式
方式一:使用del方法
Python代碼
>>> name
Python代碼 >>> name -Dee','Earl'] >>> names ['Alice', 'Beth', 'Cecil', 'Dee-Dee', 'Earldel>>> names
['Alice', 'Beth', 'Dee-Dee', 'Earl']
>>>
> b', 'c', 'd'] >>> numbers ['a', 'b', 'c', 'd']> >>> numbers
['a', 'd']
' c', 'd']
>>> numbers
['a', 'b', 'c', 'd']
>>> numbers[1:3] > numbers
['a', 'd']