update() 方法用于修改当前集合,可以添加新的元素或集合到当前集合中,如果添加的元素在集合中已存在,则该元素只会出现一次,重复的会忽略。
update() 方法语法:
set.update(set)
无。
合并两个集合,重复元素只会出现一次:
x = {"apple", "banana", "cherry"}
y = {"google", "W3Cschool", "apple"}
x.update(y)
print(x)
输出结果为:
{'banana', 'apple', 'google', 'W3Cschool', 'cherry'}
Python 集合