当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python typing.List用法及代码示例


用法:

class typing.List(list, MutableSequence[T])

list 的通用版本。用于注释返回类型。要注释参数,最好使用抽象集合类型,例如 SequenceIterable

这种类型可以按如下方式使用:

T = TypeVar('T', int, float)

def vec2(x: T, y: T) -> List[T]:
    return [x, y]

def keep_positives(vector: Sequence[T]) -> List[T]:
    return [item for item in vector if item > 0]

自 3.9 版后已弃用:builtins.list现在支持[].看PEP 585通用别名类型.

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 typing.List。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。