需求

找出两个集合相交的数据


示例

s1 = {"a","b","c"}
s2 = {"b","c","d"}


s3 = s1 & s2
print(s3)