當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python typing.Generator用法及代碼示例


用法:

class typing.Generator(Iterator[T_co], Generic[T_co, T_contra, V_co])

生成器可以由泛型類型 Generator[YieldType, SendType, ReturnType] 注釋。例如:

def echo_round() -> Generator[int, float, str]:
    sent = yield 0
    while sent >= 0:
        sent = yield round(sent)
    return 'Done'

請注意,與類型模塊中的許多其他泛型不同,GeneratorSendType 的行為是逆變的,而不是協變或不變的。

如果您的生成器隻會產生值,請將 SendTypeReturnType 設置為 None

def infinite_stream(start: int) -> Generator[int, None, None]:
    while True:
        yield start
        start += 1

或者,將您的生成器注釋為返回類型為 Iterable[YieldType]Iterator[YieldType]

def infinite_stream(start: int) -> Iterator[int]:
    while True:
        yield start
        start += 1

自 3.9 版後已棄用:collections.abc.Generator現在支持[].看PEP 585通用別名類型.

相關用法


注:本文由純淨天空篩選整理自python.org大神的英文原創作品 typing.Generator。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。