list型別,有序可變
list內的資料可以混合,string + int等
取出集合內元素:
list = ["hello", 11, 33, "world"] (index索引從0開始)
0 1 2 3
單個取出:(變數接收) = list[0]
批次取出:(變數接收) = list[0:2] (此處範圍包左不包右,去除的元素索引為0和1)
內建函式:
(變數接收) = len(列表名) 長度(含有元素的數量)
(變數接收) = sum(列表名) 求和(僅限數字)
(變數接收) = max(列表名) 求最大值
(變數接收) = min(列表名) 求最小值
(變數接收) = sorted(列表名) 排序(預設升序)(可用於string)
(變數接收) = sorted(列表名, reverse = True) 排序(降序)