About

(Function | Operator | Map | Mapping | Transformation | Method | Rule | Task | Subroutine) in Python.

Properties

Name

  • PEP 3155 Qualified name for classes and functions.

Type

A function in Python has a type.

def addS(x):
    return x + 's'
print type(addS)
print addS
<type 'function'>
<function addS at 0xb0ef95dc>

Class

Built in

See Python - Builtin Function