Python是一種流行的編程語言,廣泛應用于數據分析、機器學習、Web開發等領域。在Python中,列表(List)是一種非常有用的數據類型,用于存儲一組有序的元素。
# 列表的定義 fruits = ['apple', 'banana', 'cherry'] # 列表的索引 print(fruits[0]) # 輸出: apple print(fruits[1]) # 輸出: banana print(fruits[2]) # 輸出: cherry # 列表的長度 print(len(fruits)) # 輸出: 3 # 列表的追加 fruits.append('orange') print(fruits) # 輸出: ['apple', 'banana', 'cherry', 'orange'] # 列表的插入 fruits.insert(1, 'grape') print(fruits) # 輸出: ['apple', 'grape', 'banana', 'cherry', 'orange'] # 列表的刪除 fruits.remove('banana') print(fruits) # 輸出: ['apple', 'grape', 'cherry', 'orange'] # 列表的排序 fruits.sort() print(fruits) # 輸出: ['apple', 'cherry', 'grape', 'orange']
列表是Python中最常用的數據類型之一,它提供了豐富的操作方式,包括索引、追加、插入、刪除和排序等。通過列表,我們可以很方便地進行數據的存儲、操作和處理。
下一篇python 鍵鼠精靈