例如:
如果集合x
中没有元素存在于集合y
中则返回True:
x = {"apple", "banana", "cherry"}y = {"google", "microsoft", "facebook"}z = x.isdisjoint(y)print(z)
1、定义和用法
如果两个集合中都没有的元素,则isdisjoint()
方法返回True,否则返回False。
2、调用语法
set.isdisjoint(set)
3、参数说明
参数 | 描述 |
set | 必需的参数,要比较的集合 |
4、使用示例
例如:
如果两个集合中都有一个或多个元素,则返回False:
x = {"apple", "banana", "cherry"}y = {"google", "microsoft", "apple"}z = x.isdisjoint(y)print(z)