この記事では、Python で空のリストを作成する方法と、追加の使用方法を主に紹介します。必要な友達に参考にしてください。 Python でのリストの使用法: 作成方法。リスト、リスト内の要素を表現する方法、リストを変更および削除する方法
実行環境: Python 3.6.2
0。空のリストの作成:
l = list()
または:
l = []
1.リスト内の要素の作成と表現
fruits = ['apple', 'banana', 'pear', 'grapes', 'pineapple', 'watermelon'] fruits[2] #从0开始数起,第三个元素 pear
2.リスト内の要素の変更
fruits[2] = 'tomato' print(fruits) ['apple', 'banana', 'tomato', 'grapes', 'pineapple', 'watermelon']
3.追加リストの最後に要素を追加
fruits.append('eggplant') print(fruits) ['apple', 'banana', 'tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant']
4. リスト内の特定の段落をインターセプトする方法
print(fruit[: 2]) #从list的首元素开始截取,截取到位置'3',但不包括第3个元素 ['apple', 'banana']
5. list
fruits[:2] = ['a', 'b'] print(fruits) ['a', 'b', 'tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant']
6 .リスト内の特定の要素、またはリスト全体を削除する方法
fruits[:2] = [] #删除前两个元素 print(fruits) ['tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant'] fruits[:] = [] #删除全部list元素 []
関連する推奨事項:
以上がPython は空のリストを作成し、append の使用法を説明しますの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。