python 集合交集时间:2021-12-23 16:08:26 #Intersection setx = set(["green", "blue"]) sety = set(["blue", "yellow"]) setz = setx & sety print(setz)