Callable
定义变量为可调用类型
Callable[[dict, int], None] 表示可调用类型需要传入 dict类型参数 和 int类型参数 ,返回值是 None
from typing import Callable
def test(a: dict, b: int) -> None:
return None
if __name__ == '__main__':
t: Callable[[dict, int], None] = test
t({}, 1)
Dict
定义变量为字典类型
Dict[str, int] 表示字典的键是 str类型,值是 int类型
from typing import Dict
if __name__ == '__main__':
d: Dict[str, int] = {"dict": 0}