前言 typing 是在 python 3.5 才有的模块 前置学习 Python 类型提示:https://www.cnblogs.com/poloyy/p/15145380.html 常用类型提示 int,long,float: 整型,长整形,浮点型; bool,str: 布尔型,字符串类型: List, Tuple, Dict, Set:列表,元组,字典, 集合; Iterable,Iterator:可迭代类型,迭代器类型: Generator:生成器类型: 前两行小写的不需要 impor…