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

溫馨提示×

python里set有哪些操作

小樊
81
2024-08-11 08:42:36
欄目: 編程語言

  1. 添加元素 可以使用add()方法向set中添加一個元素。
my_set = {1, 2, 3}
my_set.add(4)
print(my_set)  # Output: {1, 2, 3, 4}
  1. 刪除元素 可以使用remove()或discard()方法刪除set中的元素。
my_set = {1, 2, 3}
my_set.remove(2)
print(my_set)  # Output: {1, 3}
  1. 清空set 可以使用clear()方法清空set中的所有元素。
my_set = {1, 2, 3}
my_set.clear()
print(my_set)  # Output: set()
  1. 求交集 可以使用intersection()或&操作符求兩個set的交集。
set1 = {1, 2, 3}
set2 = {2, 3, 4}
intersection_set = set1.intersection(set2)
print(intersection_set)  # Output: {2, 3}
  1. 求并集 可以使用union()或|操作符求兩個set的并集。
set1 = {1, 2, 3}
set2 = {2, 3, 4}
union_set = set1.union(set2)
print(union_set)  # Output: {1, 2, 3, 4}
  1. 求差集 可以使用difference()或-操作符求兩個set的差集。
set1 = {1, 2, 3}
set2 = {2, 3, 4}
difference_set = set1.difference(set2)
print(difference_set)  # Output: {1}

這些是set常用的操作,還有其他一些操作可以參考Python官方文檔。

0
正镶白旗| 兴仁县| 民丰县| 乌审旗| 陈巴尔虎旗| 漠河县| 丹江口市| 苏尼特左旗| 金昌市| 江源县| 扎赉特旗| 汝州市| 佛坪县| 伊金霍洛旗| 梓潼县| 高台县| 和田县| 独山县| 吐鲁番市| 始兴县| 潮州市| 那坡县| 连州市| 浮梁县| 江都市| 孙吴县| 朔州市| 葵青区| 星子县| 吉木萨尔县| 威远县| 界首市| 个旧市| 新昌县| 牟定县| 蛟河市| 易门县| 沙河市| 紫金县| 浪卡子县| 大埔区|