Annotated
Dùng để thêm metadata cho type (hữu ích với Pydantic hoặc FastAPI):
from typing import Annotated
from pydantic import Field
age: Annotated[int, Field(gt=0, lt=120)]
Dùng để thêm metadata cho type (hữu ích với Pydantic hoặc FastAPI):
from typing import Annotated
from pydantic import Field
age: Annotated[int, Field(gt=0, lt=120)]
Không có bình luận