Add single elements with add(): python colors = {"red", "blue"} colors.add("green") print(colors) # {"red", "blue", "green"} To add multiple elements at once, use update(): python colors.update(["yellow", "purple"]) print(colors) # {"red", "blue", "green", "yellow", "purple"} If you add something already in the set, nothing happens.
No error, no duplicate.