demo_set_add.py:
thisset = {"apple", "banana", "cherry"} thisset.add("orange") print(thisset)
➜ begtut>python demo_set_add.py
{'cherry', 'banana', 'apple', 'orange'}