Python 數組(也稱為列表)中可以輕松地創建和操作子集。
要創建列表的子集,您可以使用列表中的切片語法。 它允許您使用兩個索引來訪問指定范圍內的元素。
# 從 Python 列表中創建子集 my_list = [1, 2, 3, 4, 5] sub_list = my_list[2:4] print(sub_list) # 輸出 [3, 4]
接下來,您還可以使用其他函數對子集進行操作。
# 使用 Python 內置函數獲取長度 sub_list_length = len(sub_list) print(sub_list_length) # 輸出 2 # 使用循環將元素相加 total = 0 for element in sub_list: total += element print(total) # 輸出 7
最后,您可以使用Python中的列表方法來修改和擴展列表。
# 將元素添加到子集中 sub_list.append(6) print(sub_list) # 輸出 [3, 4, 6] # 將子集插入到原始列表中 my_list[2:4] = sub_list print(my_list) # 輸出 [1, 2, 3, 4, 6, 5]
綜上所述,Python 數組的子集提供了廣泛的操作,可以讓您輕松創建,操作和擴展列表。