Home  >  Article  >  Backend Development  >  python list delete elements

python list delete elements

巴扎黑
巴扎黑Original
2016-11-26 11:35:041226browse

python list deletion elements

python Several ways to delete elements

Method 1: Use del method

Python code

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

>>> names

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

>> ;> del names[2]

>>> names

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

>>>

Python code

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

>>> numbers

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

>>> del numbers[1:3]

>>> numbers

['a', 'd']

Method 2: Slice assignment

Python code

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