函数标注通常用于 类型提示:例如以下函数预期接受两个 int 参数并预期返回一个 int 值:

```

def sum_two_numbers(a: int, b: int) -> int:

return a + b