python3中“->”的含义
函数标注通常用于 类型提示:例如以下函数预期接受两个 int 参数并预期返回一个 int 值:
```
def sum_two_numbers(a: int, b: int) -> int:
return a + b
->:
标记返回函数注释,信息作为.__annotations__
属性提供
__annotations__
属性是字典。键return
是用于在箭头后检索值的键。但是在Python中3.5
,PEP 484 - Type Hints附加了一个含义:->
用于指示函数返回的类型。它似乎也将在未来版本中强制执行。
def test() -> [1, 2, 3, 4, 5]: pass print(test.__annotations__)
{'return': [1, 2, 3, 4]}