2. Find one other way to create the set above.
3. Remove "green" from the set using the appropriate method.
4. Try removing "yellow" from the set using a method that won't raise an error if the item
doesn't exist.
5. Add ‘Purple’ and ‘Pink’ to the set in one operation.
6. Find the length of the set.
7. Empty the set.
8. Delete the set completely.
Right Answer:
# Step 1
colors = {"red", "green", "blue"}
# Step 2
colors_alternate = set(["red", "green", "blue"])
# Step 3
colors.discard("green")
# Step 4
colors.discard("yellow") # No error raised if "yellow" doesn't exist
# Step 5
colors.update(["Purple", "Pink"])
# Step 6
print(len(colors))
# Step 7
colors.clear()
# Step 8
del colors