0 攝影或3C 2026-07-02 Python typing.TypedDict vs typing.NamedTuple 教學; from typing import NamedTuple, TypedDict ## 1. 一句話總結 ## 2. TypedDict:長得像 di...
0 攝影或3C 2026-07-01 Python `typing.NamedTuple` (`collections.namedtuple`) 與 `typing.Literal` 教學 — 用型別「防止錯配」; StripRule = NamedTuple(“StripRule”, [(“regex”, re.Pattern), (“flag”, str)]) vs StripRule = namedtuple(“StripRule”, [“regex”, “flag”]) > **主要目的:防止錯配 (mis-pairing) 與打錯...
近期留言