Python Lists Tuples Sets Guide
Python Lists Tuples Sets Guide
LISTS
Common operations:
Example:
fruits.append("orange")
TUPLES
Common operations:
Example:
print(person[0]) # Alice
SETS
Common operations:
Python Lists, Tuples, and Sets - Complete Guide
Example:
colors.add("blue")
CONVERSION
sorted(list(set))
COMPARISON TABLE
----------------------|--------|--------|-------