可以,任何可迭代的对象(元组、列表、字典等),都可以通过update()方法添加元素到集合中thisset = {"apple", "banana", "cherry"}mylist = ["kiwi", "orange"]thisset.update(mylist)print(thisset)执行结果:{'cherry', 'banana', 'orange', 'apple', 'kiwi'}