You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
222 B

setA = set('asdfghjkl')
setB = set('qweasdzxc')
print("setA为 {}\nsetB为 {}".format(setA, setB))
print("交集为 {}\n并集为 {}\n差集为 {}".format(setA.intersection(setB), setA.union(setB), setA.difference(setB)))