Primary
callable() ⚬ᵖʸ|Documentation|1st|20251021141004-00-⌔
Built-in Functions — Python 3 documentation#callable
callable(object,/)Return
Trueif the object argument appears callable,Falseif not. If this returnsTrue, it is still possible that a call fails, but if it isFalse, calling object will never succeed. Note that classes are callable (calling a class returns a new instance); instances are callable if their class has a__call__()method.Added in version 3.2: This function was first removed in Python 3.0 and then brought back in Python 3.2.
Printed 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •