Python 集合 isdisjoint() 方法
示例
如果集合 x
中的任何项目都不存在于集合 y
中,则返回 True
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "facebook"}
z = x.isdisjoint(y)
print(z)
自己试试 »
定义和用法
如果两个集合中没有项目相同,则 isdisjoint()
方法返回 True,否则返回 False。
语法
set.isdisjoint(set)
参数值
参数 | 描述 |
---|---|
set | 必需。要查找相同项目的集合 |
更多示例
示例
如果两个集合中都没有项目?
如果一个或多个项目存在于两个集合中,则返回 False
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.isdisjoint(y)
print(z)
自己试试 »