python 列表删除元素

巴扎黑
巴扎黑 原创
2016-11-26 11:35:04 928浏览

python 列表删除元素

python 删除元素的几种方式

方式一:使用del方法

Python代码

>>> names=['Alice','Beth','Cecil','Dee-Dee','Earl']

>>> names

['Alice', 'Beth', 'Cecil', 'Dee-Dee', 'Earl']

>>> del names[2]

>>> names

['Alice', 'Beth', 'Dee-Dee', 'Earl']

>>>

Python代码

>>> numbers=['a', 'b', 'c', 'd']

>>> numbers

['a', 'b', 'c', 'd']

>>> del numbers[1:3]

>>> numbers

['a', 'd']

方式二:分片赋值

Python代码

>>> numbers=['a', 'b', 'c', 'd']

>>> numbers

['a', 'b', 'c', 'd']

>>> numbers[1:3]=[]

>>> numbers

['a', 'd']


声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。