python3——“->”的含义
->:
标记返回函数注释,信息作为.__annotations__
属性提供,__annotations__
属性是字典。键return
是用于在箭头后检索值的键。但是在Python中3.5
,PEP 484 - Type Hints附加了一个含义:->
用于指示函数返回的类型。它似乎也将在未来版本中强制执行。
eg:
输入:
def test() -> [1, 2, 3, 4, 5]: pass print(test.__annotations__)
输出:
{'return': [1, 2, 3, 4, 5]}