小码哥的IT人生

Python 集合 difference() 方法

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

Python 集合 difference() 方法

实例

返回一个集合,其中包含仅存在于集合 x 中而不存在于集合 y 中的项目:

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

完整实例:

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

定义和用法

different() 方法返回一个包含两个集合之间的差异的集合。

含义:返回的集合包含仅在第一个集合中存在的项目,而同时不存在于两个集合中。

语法

set.difference(set)

参数值

参数 描述 set 必需。要检查其中差异的项目。

更多实例

示例代码:

反转第一个例子。返回一个集合,其中包含仅存在于集合 y 中而不存在于集合 x 中的项目:

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

完整实例:

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

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

苏公网安备 32030202000762号

© 2021-2024