小码哥的IT人生

Python 集合 isdisjoint() 方法

Python基础 2022-06-06 16:13:26小码哥的IT人生shichen

Python 集合 isdisjoint() 方法

实例

所有集合 x 中没有项目存在于集合 y 中,则返回 True:

x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "facebook"}
z = x.isdisjoint(y)
print(z)

完整实例:

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)

完整实例:

x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
z = x.isdisjoint(y)
print(z)

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024