list[int] from typing import List List[int] 辞書(strキー, float値) dict[str, float] from typing import Dict Dict[str, float] 文字列のセット set[str] from typing import Set Set[str] 固定長タプル tuple[str, int] from typing import Tuple Tuple[str, int] 可変長タプル tuple[int, ...] from typing import Tuple Tuple[int, ...] 14