Python集合(set)是一個(gè)無序且不包含重復(fù)元素的數(shù)據(jù)結(jié)構(gòu)。使用集合可以簡化一些操作,例如求交集、并集、差集和對稱差集等。以下是一些集合操作的例子以及如何簡化代碼:
set_a = {1, 2, 3, 4, 5}
set_b = {4, 5, 6, 7, 8}
# 使用集合的交集方法
intersection = set_a.intersection(set_b)
print(intersection) # 輸出:{4, 5}
# 使用 & 運(yùn)算符
intersection = set_a & set_b
print(intersection) # 輸出:{4, 5}
set_a = {1, 2, 3, 4, 5}
set_b = {4, 5, 6, 7, 8}
# 使用集合的并集方法
union = set_a.union(set_b)
print(union) # 輸出:{1, 2, 3, 4, 5, 6, 7, 8}
# 使用 | 運(yùn)算符
union = set_a | set_b
print(union) # 輸出:{1, 2, 3, 4, 5, 6, 7, 8}
set_a = {1, 2, 3, 4, 5}
set_b = {4, 5, 6, 7, 8}
# 使用集合的差集方法
difference = set_a.difference(set_b)
print(difference) # 輸出:{1, 2, 3}
# 使用 - 運(yùn)算符
difference = set_a - set_b
print(difference) # 輸出:{1, 2, 3}
set_a = {1, 2, 3, 4, 5}
set_b = {4, 5, 6, 7, 8}
# 使用集合的對稱差集方法
symmetric_difference = set_a.symmetric_difference(set_b)
print(symmetric_difference) # 輸出:{1, 2, 3, 6, 7, 8}
# 使用 ^ 運(yùn)算符
symmetric_difference = set_a ^ set_b
print(symmetric_difference) # 輸出:{1, 2, 3, 6, 7, 8}
通過使用集合的方法和相應(yīng)的運(yùn)算符,可以簡化代碼并提高代碼的可讀性。