Python 添加集合项
添加集合项目
要将一个项目添加到集合中,请使用 add()
方法。
要将多个项目添加到集合中,请使用 update()
方法。
实例
使用 add()
方法将项目添加到集合中:
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)
亲自试一试 »
实例
使用 update()
方法将多个项目添加到集合中:
thisset = {"apple", "banana", "cherry"}
thisset.update(["orange",
"mango", "grapes"])
print(thisset)
亲自试一试 »