如何获取 UnionType 的子成员并判断类型是否在其中?

2024-10-27 14:00:29 编辑:抖狐科技 来源:摘自互联网

如何获取 uniontype 的子成员并判断类型是否在其中?

如何获取 uniontype 的子成员

利用 uniontype 可表示多个类型的联合体,但在某些情况下,我们可能需要获取并判断其子类型。本文将介绍如何解决此问题。

判断类型是否在 uniontype 中

可以使用 typing.get_args 来获取 uniontype 的子成员,具体代码如下:

from typing import union

type_hint = union[str, int]
get_args(type_hint)  # [str, int]

登录后复制

这样就可以获取到 uniontype 的子成员列表。

判断字符串是否在 uniontype 中

为了判断一个字符串是否在 uniontype 中,可以使用 isinstance 函数:

from typing import Union

type_hint = Union[str, int]
isinstance("", type_hint)  # True
isinstance(10, type_hint)  # False

登录后复制

以上就是如何获取 UnionType 的子成员并判断类型是否在其中?的详细内容,更多请关注抖狐科技其它相关文章!

本站文章均为抖狐网站建设摘自权威资料,书籍,或网络原创文章,如有版权纠纷或者违规问题,请即刻联系我们删除,我们欢迎您分享,引用和转载,我们谢绝直接复制和抄袭!感谢...
我们猜你喜欢