中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

set()函數在Python中的基本操作

小樊
86
2024-08-29 14:13:11
欄目: 編程語言

set() 是 Python 中的一個內置函數,用于創建一個新的集合(set)。集合是一個無序的不重復元素序列。

以下是 set() 函數的基本操作:

  1. 創建一個空集合:
empty_set = set()
print(empty_set)  # 輸出:set()
  1. 使用可迭代對象(如列表、元組等)創建集合:
my_list = [1, 2, 3, 4, 4, 5]
my_set = set(my_list)
print(my_set)  # 輸出:{1, 2, 3, 4, 5},注意重復的元素被去除了
  1. 集合的添加和刪除操作:
my_set = {1, 2, 3}
my_set.add(4)  # 添加元素 4
print(my_set)  # 輸出:{1, 2, 3, 4}

my_set.remove(2)  # 刪除元素 2
print(my_set)  # 輸出:{1, 3, 4}
  1. 集合的交集、并集、差集和對稱差集操作:
set_a = {1, 2, 3, 4}
set_b = {3, 4, 5, 6}

intersection = set_a.intersection(set_b)  # 交集
print(intersection)  # 輸出:{3, 4}

union = set_a.union(set_b)  # 并集
print(union)  # 輸出:{1, 2, 3, 4, 5, 6}

difference = set_a.difference(set_b)  # 差集
print(difference)  # 輸出:{1, 2}

symmetric_difference = set_a.symmetric_difference(set_b)  # 對稱差集
print(symmetric_difference)  # 輸出:{1, 2, 5, 6}

這些是 set() 函數在 Python 中的基本操作。你可以根據需要進行更多的集合操作。

0
福州市| 宝兴县| 秦皇岛市| 张家口市| 贵定县| 平度市| 临城县| 黄平县| 阿克| 棋牌| 禄劝| 靖远县| 太康县| 绥滨县| 沙河市| 乃东县| 南通市| 陆丰市| 呈贡县| 沛县| 平邑县| 府谷县| 武义县| 神农架林区| 镇宁| 交口县| 清丰县| 旬邑县| 五台县| 大理市| 阜康市| 福泉市| 长岛县| 湖北省| 宿松县| 五莲县| 利辛县| 阳朔县| 青浦区| 越西县| 西丰县|