Function Annotations
文档:https://docs.python.org/3/tutorial/controlflow.html#function-annotations
1 | def f(ham: str, eggs: str = 'eggs') -> str: |
Type Hints 是 Python3.5 添加的特性,旧版没有
同时还有变量注解:
1 | age: int = 20 |
文档:https://docs.python.org/3/tutorial/controlflow.html#function-annotations
1 | def f(ham: str, eggs: str = 'eggs') -> str: |
Type Hints 是 Python3.5 添加的特性,旧版没有
同时还有变量注解:
1 | age: int = 20 |