object()
object() is built into Python. You do not import it. Freshers only need one honest call and the printed result — not a long definition.
object() — output — True. object is the base of almost everything.
Wrong type often raises TypeError. Empty values matter for bool/all/any. Don’t mix object up with a similar name (sorted vs sort, int vs float).
class Student (blueprint)
│ Student("Asha", 12)
▼
s1 Asha roll 12Exam tip
Call object() once and say what prints.