Python 集合 update() 方法
Python基础 2022-06-06 16:13:57小码哥的IT人生shichen
Python 集合 update() 方法
实例
把集合 y 中的项目插入集合 x:
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
x.update(y)
print(x)
完整实例:
x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}
x.update(y)
print(x)
定义和用法
update() 方法通过添加另一个集合中的项目来更新当前集合。
如果两个集合中都存在一个项目,则更新后的集合中将仅出现一次该项目。
语法
set.update(set)
参数值
参数 | 描述 |
---|---|
set | 必需。插入当前集合的集合。 |