Python 集合 update() 方法

实例

把集合 y 中的项目插入集合 x:

  1. x = {"apple", "banana", "cherry"}
  2. y = {"google", "microsoft", "apple"}
  3.  
  4. x.update(y)
  5.  
  6. print(x)

定义和用法

update() 方法通过添加另一个集合中的项目来更新当前集合。

如果两个集合中都存在一个项目,则更新后的集合中将仅出现一次该项目。

语法

  1. set.update(set)

参数值

参数 描述
set 必需。插入当前集合的集合。