要求两个集合的交集,可以使用python中的set()函数来实现。以下是一个示例:
set1 = {1, 2, 3, 4, 5}
set2 = {3, 4, 5, 6, 7}
intersection = set1.intersection(set2)
print(intersection)
在这个示例中,我们首先定义了两个集合set1和set2,然后使用intersection()方法来计算它们的交集。最后,我们打印出交集的结果。输出将是{3, 4, 5},这是两个集合的共同元素。