Contribute Media
A thank you to everyone who makes this possible: Read More

The meaning of "callable" in Python

Description

A callable is a function-like object, meaning it's something that behaves like a function. The primary types of callables in Python are functions and classes, though other callable objects do exist.

Details

Improve this page