apply 1.5 – Cross-Python apply¶
The apply
module provides an apply()
function for
Python 2 and 3.
It preserves the functionality of the apply()
builtin,
which has been deprecated and removed from Python.
API Documentation¶
-
apply.
apply
(object, args=None, kwargs=None)¶ Call a callable object with positional arguments taken from the optional tuple args, and keyword arguments taken from the optional dictionary kwargs; return its results.