Python callable() Function
Definition and Usage
The callable()
function returns True if the
specified object is callable, otherwise it returns False.
Syntax
callable(object)
Parameter Values
Parameter | Description |
---|---|
object | The object you want to test if it is callable or not. |