Python/ref set update

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python Set update()方法

❮设定方法

从集合中插入项目 y 成组 x

    x = {"apple", "banana", "cherry"}
y = {"google", "microsoft", "apple"}


x.update(y) 

print(x)

定义和用法

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

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

句法

set.update(set)
  

参数值

参数 描述
set 需要。集插入到当前集中

❮设定方法