Get your own Python server Result Size: 625 x 565
x
 
thisset = {"apple", "banana", "cherry"}
mylist = ["kiwi", "orange"]
thisset.update(mylist)
print(thisset)
{'banana', 'cherry', 'apple', 'orange', 'kiwi'}