python 中的交集()函数有助于找到集合中的公共元素。该函数返回一个包含所有比较集中共有元素的新集合。 **A.intersection(*other_sets)** #where A is a set of any iterables, like strings, lists, and dictionaries. 交叉点()参数: intersection()函数可以接受许多用于比较的集合参数(*表示),并用逗号分隔这些集合。我们还可以使用&运算符(交集运算符)来查找集合的交集。 参数 描述 必需/可…