from typing import List, Dict test7: List[int] = [1, 2, 3] # intの配列のみに絞ることができるtest8: Dict[str, str] = {'name': 'taro'} # 辞書 ...
確定! 回上一頁