亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
荔浦县| 旺苍县| 女性| 嘉峪关市| 湛江市| 丰原市| 政和县| 大姚县| 高安市| 潼南县| 和静县| 左权县| 长春市| 大余县| 鄄城县| 桐梓县| 浦县| 益阳市| 武陟县| 陆川县| 永州市| 建瓯市| 通许县| 双城市| 巩留县| 那曲县| 滕州市| 新河县| 平远县| 北宁市| 洛浦县| 如东县| 奎屯市| 津南区| 渝北区| 西贡区| 凌海市| 汶上县| 龙门县| 礼泉县| 大兴区|