TypedDict

python TypedDict 字典补全

# Python 3.5 之后可用,之前需要pip安装 from typing import TypedDict # 每个字段必须 class Person(TypedDict): name: str age: int qq: str p1_dict: Person = { "name": "大佬" ......
字典 TypedDict python
共1篇  :1/1页 首页上一页1下一页尾页