小码哥的IT人生

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 必需。插入当前集合的集合。

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

苏公网安备 32030202000762号

© 2021-2024