您好,登錄后才能下訂單哦!
Python中的set
函數具有多種用途,以下是一些主要的應用場景和技巧:
{}
或set()
函數可以創建一個集合。例如:# 使用大括號創建集合
my_set = {1, 2, 3, 4, 5}
# 使用set()函數創建集合
another_set = set([1, 2, 3, 4, 5])
my_list = [1, 2, 2, 3, 4, 4, 5]
unique_list = list(set(my_list))
in
關鍵字檢查一個元素是否存在于集合中。例如:if 3 in my_set:
print("3 is in the set")
set1 = {1, 2, 3}
set2 = {2, 3, 4}
# 并集
union_set = set1 | set2
print(union_set) # 輸出: {1, 2, 3, 4}
# 交集
intersection_set = set1 & set2
print(intersection_set) # 輸出: {2, 3}
# 差集
difference_set = set1 - set2
print(difference_set) # 輸出: {1}
# 對稱差集
symmetric_difference_set = set1 ^ set2
print(symmetric_difference_set) # 輸出: {1, 4}
even_numbers = {x for x in range(1, 11) if x % 2 == 0}
print(even_numbers) # 輸出: {2, 4, 6, 8, 10}
my_dict = {set([1, 2, 3]): "one two three", set([4, 5, 6]): "four five six"}
print(my_dict)
for
循環遍歷集合中的元素。例如:for item in my_set:
print(item)
len()
函數可以獲取集合的大小(即元素的數量)。例如:print(len(my_set)) # 輸出: 5
set()
函數創建一個空集,或使用set.add()
方法向集合中添加元素(但空集本身不能添加元素)。例如:empty_set = set()
another_set = set([1, 2, 3])
empty_set.add(4) # 這將引發AttributeError,因為空集沒有add方法
my_set = {1, 2, 3}
new_set = {x + 1 for x in my_set} # 創建一個新的集合,其中包含原集合中每個元素加1的結果
print(new_set) # 輸出: {2, 3, 4}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。