issuperset 是超集(其实就是英语单词的缩写,是,超级,集合) 用于判断指定集合的所有元素是否都包含在原始的集合中
isdisjoint 是不相交 (其实就是英语单词的缩写,是,不相交) 判断两个集合是否包含相同的元素,如果没有返回 True,否则返回 False。
格式:issuperset (字典的变量)
isdisjoint (字典的变量)
a={1,2,3,4,6,"你好"}
b={2,4,6,"你好"}
c={7,8,9,"我们"}
d={1,2,3,4,6,"你好"}
e={1,2,3,4,888,"你好"}
print(a.issuperstr(b)) True
print(a.issuperstr(c)) False
print(a.isdisjoint(c)) True
print(a.isdisjoint(b)) False