Search notes:

Python: function (type)

>>> def F(): pass
... 
>>> type (F)
<class 'function'>
>>> 
>>> type(lambda x: x)
<class 'function'>

See also

Other Built-in types, such as builtin_function_or_method or method.

Index