在 Python 中类型注解不会进行额外的效验。 函数注解 1def add(x:int, y:int) ->:2 return x + y 变量注解 1from typing import List****2 3x: int = 424y: str = 'answer'5z: List[int] = [42,] 静态类型检查工具 mypy