目录

Python - 添加集合项


添加项目

创建集合后,您无法更改其项目,但可以添加新项目。

要将一个项目添加到集合中,请使用add()方法。

示例

使用以下命令将项目添加到集合中add()方法:

thisset = {"apple", "banana", "cherry"}

thisset.add("orange")

print(thisset)
亲自试一试 »

添加集合

要将另一个集合中的项目添加到当前集合中,请使用update()方法。

示例

添加元素来自tropical进入 thisset:

thisset = {"apple", "banana", "cherry"}
tropical = {"pineapple", "mango", "papaya"}

thisset.update(tropical)

print(thisset)
亲自试一试 »

添加任何可迭代对象

中的对象update()方法不必是集合,它可以是任何可迭代对象(元组、列表、字典等)。

示例

将列表的元素添加到集合中:

thisset = {"apple", "banana", "cherry"}
mylist = ["kiwi", "orange"]

thisset.update(mylist)

print(thisset)
亲自试一试 »