建立一個列表:
list1 = [`Python`, `JAVA`, 2018] list2 = [1, 2, 3, 4, 5 ] list3 = ["a", "b", "c", "d"]
訪問列表中的值:
使用下標索引來訪問列表中的值,可以使用方括號的形式擷取字元:
list1 = [`Python`, `JAVA`, 2018] list2 = [1, 2, 3, 4, 5, 6, 7 ] print(list1[0]) print (list2[1:5])
更新列表:
list = [1, 2, 3, 4, 5, 6, 7] list.append(8) ## 使用 append() 新增元素 list[2] = 33 ## 使用下標進行更改 print(list)
刪除列表元素:
list = [1, 2, 3, 4, 5, 6, 7] del list[0] # 刪除指定下標的元素 print(list)