python list delete elements

巴扎黑
Release: 2016-12-03 11:21:25
Original
1314 people have browsed it

python list deletion elements

python several ways to delete elements

Method one: use del method

>>> names=['Alice','Beth','Cecil','Dee-Dee','Earl']  
>>> names  
['Alice', 'Beth', 'Cecil', 'Dee-Dee', 'Earl']  
>>> del names[2]  
>>> names  
['Alice', 'Beth', 'Dee-Dee', 'Earl']  
>>>
Copy after login

>>> numbers=['a', 'b', 'c', 'd']  
>>> numbers  
['a', 'b', 'c', 'd']  
>>> del numbers[1:3]  
>>> numbers  
['a', 'd']
Copy after login


Method two: slice assignment

>>> numbers=['a', 'b', 'c', 'd']  
>>> numbers  
['a', 'b', 'c', 'd']  
>>> numbers[1:3]=[]  
>>> numbers  
['a', 'd']
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!