4 Python List, Tuple, Set 05-10-2022
4 Python List, Tuple, Set 05-10-2022
SETS
• A set is a collection which
is unordered, unchangeable*,
and unindexed.
• Sets are written with curly brackets.
Create a Set:
thisset ={"apple", "banana", "cherry"}
print(thisset)
Set Items