set()
set() is built into Python. You do not import it. Freshers only need one honest call and the printed result — not a long definition.
set() — output — {1, 2, 3}. Duplicates gone.
Wrong type often raises TypeError. Empty values matter for bool/all/any. Don’t mix set up with a similar name (sorted vs sort, int vs float).
{1, 2, 2, 3}
│ unique
▼
{1, 2, 3}Exam tip
Call set() once and say what prints.