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