這篇文章主要介紹了關於Python 創建空的list,以及append用法講解,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
Python中list的用法:如何建立list,如何表達list中的元素,如何修改和刪除list
#運行環境:Python 3.6.2
0.空list的建立:
l = list()
或:
l = []
# #1.list中元素的建立與表達
fruits = ['apple', 'banana', 'pear', 'grapes', 'pineapple', 'watermelon'] fruits[2] #从0开始数起,第三个元素 pear
#2.list中元素的變更
fruits[2] = 'tomato' print(fruits) ['apple', 'banana', 'tomato', 'grapes', 'pineapple', 'watermelon']
#3.在list最後增加更多元素
fruits.append('eggplant') print(fruits) ['apple', 'banana', 'tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant']
4.如何截取list中的某一段
##print(fruit[: 2]) #从list的首元素开始截取,截取到位置'3',但不包括第3个元素 ['apple', 'banana']
5. 如何更改list中連續的元素
#fruits[:2] = ['a', 'b'] print(fruits) ['a', 'b', 'tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant']##6 .如何刪除list中某段元素,或全部list
fruits[:2] = [] #删除前两个元素 print(fruits) ['tomato', 'grapes', 'pineapple', 'watermelon', 'eggplant'] fruits[:] = [] #删除全部list元素 []相關推薦:
#python建立清單和新增元素到清單的實作方法_python
以上是Python 創建空的list,以及append用法講解的詳細內容。更多資訊請關注PHP中文網其他相關文章!