🍞 Toast Blog · 简单的李 RSS
📝

Python 类型注解进阶指南

TypedDict

from typing import TypedDict
class User(TypedDict):
    id:int
    name:str