ホームページ  >  記事  >  バックエンド開発  >  Pythonリストの要素の削除

Pythonリストの要素の削除

巴扎黑
巴扎黑オリジナル
2016-12-03 11:21:251363ブラウズ

Pythonで要素をリスト削除する

Pythonで要素を削除するいくつかの方法

方法1: delメソッドを使用する

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


方法2: スライス割り当て

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


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。