Python 3.X新增加了一个特性(Feature),叫作函数注释 Function Annotations
它的用途虽然不是语法级别的硬性要求,但是顾名思义,它可做为函数额外的注释来用。
Python中普通的函数定义如下:
def func(a, b, c): return a + b + c >>> func(1, 2, 3) 6
def func(a: 'spam', b: (1, 10), c: float) -> int: return a + b + c >>> func(1, 2, 3) 6
返回值的形式是 -> int,annotation可被保存为函数的attributes。
查看所有的annotation,可通过如下语句:
>>> func.__annotations__ {'c': <class 'float'>, 'a': 'spam', 'b': (1, 10), 'return': <class 'int'>}
>>> def func(a: 'spam' = 4, b: (1, 10) = 5, c: float = 6) -> int: ... return a + b + c ... >>> func(1, 2, 3) 6 >>> func() 15 >>> func(1, c=10) 16 >>> func.__annotations__ {'c': <class 'float'>, 'a': 'spam', 'b': (1, 10), 'return': <class 'int'>}
参考文献
Learning Python 5th Edition
python3 -> 函数注释 Function Annotations,布布扣,bubuko.com
python3 -> 函数注释 Function Annotations
原文:http://blog.csdn.net/feelang/article/details/38226591