3. Data model — Python 3 documentation#object.call

object.__call__(self[, args...])

Called when the instance is “called” as a function; if this method is defined, x(arg1, arg2,...) roughly translates to type(x).__call__(x, arg1,...). The object class itself does not provide this method.

Printed 2026-06-28.

(echo:: @ )