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


Python typing.TypedDict.__total__用法及代码示例


用法:

__total__

Point2D.__total__ 给出total 参数的值。例子:

>>> from typing import TypedDict
>>> class Point2D(TypedDict): pass
>>> Point2D.__total__
True
>>> class Point2D(TypedDict, total=False): pass
>>> Point2D.__total__
False
>>> class Point3D(Point2D): pass
>>> Point3D.__total__
True

相关用法


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