Add Items
Once a set is created, you cannot change its items, but you can add new items.
To add one item to a set use the add()
method.
Example
Add an item to a set, using the add()
method:
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)