导航
统计
- 随笔 - 26
- 文章 - 0
- 评论 - 0
- 阅读 - 7606
10 2022 档案
-
python 函数入参指定类型
摘要:from typing import List, Tuple, Dict names: List[str] = ['Germey', 'Guido'] version: Tuple[int, int, int] = (3, 7, 4) operations: Dict[str, bool] = {' 阅读全文