在Python中,set語(yǔ)句用于創(chuàng)建一個(gè)無(wú)序的、不重復(fù)的集合??梢允褂靡韵路椒☉?yīng)用set語(yǔ)句:
my_set = set() # 創(chuàng)建一個(gè)空的set
my_set = set([1, 2, 3]) # 從列表創(chuàng)建一個(gè)set
my_set = {1, 2, 3} # 使用花括號(hào)創(chuàng)建一個(gè)set
my_set.add(4) # 添加一個(gè)元素到set
my_set.update([4, 5, 6]) # 添加多個(gè)元素到set
my_set.remove(3) # 從set中移除指定元素
my_set.discard(4) # 如果存在,則從set中移除指定元素
my_set.pop() # 移除set中的任意一個(gè)元素
for element in my_set:
print(element)
if 2 in my_set:
print("2 exists in the set")
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
union_set = set1.union(set2) # 并集
intersection_set = set1.intersection(set2) # 交集
difference_set = set1.difference(set2) # 差集
這些是set語(yǔ)句的一些常見用法,可以根據(jù)具體需求進(jìn)行應(yīng)用。