Home  >  Article  >  Backend Development  >  python list delete elements

python list delete elements

巴扎黑
巴扎黑Original
2016-12-03 11:21:251316browse

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']  
>>>

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


Method two: slice assignment

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


Statement:
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
Previous article:python string processingNext article:python string processing