Python isdisjoint() 集合方法
-
定义和用法
isdisjoint() 如果两个集中都没有项目,则该方法返回True,否则返回False。 -
实例
如果set中没有项目,x则返回True y:
尝试一下x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "apple"} x.isdisjoint(y) print(x)
-
句法
set.isdisjoint(set)
-
参数值
参数 必需的 描述 set 是 在以下位置搜索相等项的集合 -
更多例子
如果两组都没有项目怎么办?如果两个集合中都存在一个或多个项目,则返回False:
尝试一下x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "apple"} z = x.isdisjoint(y) print(z)
-
相关页面
reversed() 返回一个反向的迭代器对象。