[python] 파이썬 집합에서 원소들을 조합하여 새로운 집합을 생성하는 방법은 무엇인가요?
# 두 개의 집합 생성
set1 = {1, 2, 3}
set2 = {3, 4, 5}
# 두 집합의 합집합 생성
union_set = set1.union(set2)
print(union_set) # 출력: {1, 2, 3, 4, 5}
# 두 개의 집합 생성
set1 = {1, 2, 3}
set2 = {3, 4, 5}
# 두 집합의 합집합 생성
union_set = set1.union(set2)
print(union_set) # 출력: {1, 2, 3, 4, 5}