About
(Function | Operator | Map | Mapping | Transformation | Method | Rule | Task | Subroutine) in Python.
Articles Related
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>