how to create a set and add to it python code example
Example: add element in set python
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)