【Python】Python Lists
一個List的例子如下:
mylist = ["apple", "banana", "cherry"]
List
Lists可以使用在儲存多個物件在單一變數。
Lists為4個儲存資料結構的一個,其他3個為Tuple, Set, Dictionary。這些有不同的品質與儲存。
Lists建立在方括號[]中。
如下所示:
範例
Create a List:
thislist = ["apple", "banana", "cherry"]
print(thislist)
上面顯示:['apple', 'banana', 'cherry']
List Items
List中的items為排序的、可修改的、且准許重複值。
List中的items為indexed,第一個為index[0],第二個為index[1]... etc.
Ordered
當某個Lists已經ordered了,表示這個item有被定義order,且這個order是無法更改。如果你要增加一個新的items到list,新的items將會在list的最後面。
Note: 有一些list methoes 可以改變order,但一般來說,這個order是不會改變的。
Changeable
如果list是可改變的,表示可以對已經建立後的list去做改變、增加、移除items。
Allow Duplicates
因為lists有indexed,裡面儲存的值是可以重複的。
範例:
Lists 准許重複的值:
thislist = ["apple", "banana", "cherry", "apple", "cherry"]
print(thislist)
上面輸出:['apple', 'banana', 'cherry', 'apple', 'cherry']
that's it.
留言
張貼留言