Python/ref set isdisjoint
来自菜鸟教程
<languages />
Python Set isdisjoint()方法
例
如果未设置任何项目,则返回True
x
在集合中
y
x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "facebook"} z = x.isdisjoint(y) print(z)
定义和用法
The
isdisjoint()
如果两个集合中都不存在任何项目,则方法返回True,否则返回False。
句法
set.isdisjoint(set)
参数值
参数 | 描述 |
---|---|
set | 需要。在以下位置搜索相等项的集合 |
更多例子
例
如果两组都没有物品怎么办?
如果两个集合中都存在一个或多个项目,则返回False:
x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "apple"} z = x.isdisjoint(y) print(z)