向集合添加多个项目
向集合添加多个项目详细操作教程
以下实例为学习向集合添加多个项目,具体代码如下:
# Filename : example.py
# Author by : www.lidihuo.com
thisset = {"apple", "banana", "cherry"}
thisset.update(["orange", "mango", "grapes"])
print(thisset)
执行以上代码输出结果为:
# Filename : example.py
# Author by : www.lidihuo.com
{'banana', 'grapes', 'apple', 'orange', 'cherry', 'mango'}