Python Sets
Unordered, unindexed collection.
Examples
Add Items
Adding an item.
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)Test Your Knowledge
Python Quiz
No quiz available for this topic yet.
Unordered, unindexed collection.
Adding an item.
thisset = {"apple", "banana", "cherry"}
thisset.add("orange")
print(thisset)No quiz available for this topic yet.