Primary
''callable'' ⚬|Definition|1st|20260605182851-00-⌔
Glossary — Python 3 documentation#term-callable
callable
A callable is an object that can be called, possibly with a set of arguments (see argument), with the following syntax:
callable(argument1, argument2, argumentN)A function, and by extension a method, is a callable. An instance of a class that implements the
__call__()method is also a callable.Printed 2026-06-28.
(echo:: @ ᯤ)
Link to original
Secondary
• • •