我可以解压/解构typing.NamedTuple吗?

发布于 2025-01-10 15:24:23 字数 189 浏览 1 评论 0原文

这是一个简单的问题,所以我很惊讶我找不到它被问到(如果我错过了它,我很抱歉),并且当我考虑重构以用 NamedTuple 替换元组时,它总是突然出现在我的脑海中。

我可以将 typing.NamedTuple 解压为参数或解构赋值,就像使用 tuple 那样吗?

This is a simple question so I'm surprised that I can't find it asked on SO (apologies if I've missed it), and it always pops into my mind as I contemplate a refactor to replace a tuple by a NamedTuple.

Can I unpack a typing.NamedTuple as arguments or as a destructuring assignment, like I can with a tuple?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

金橙橙 2025-01-17 15:24:23

是的你当然可以。

from typing import NamedTuple

class Test(NamedTuple):
    a: int
    b: int

t = Test(1, 2)

# destructuring assignment
a, b = t
# a = 1
# b = 2

def f(a, b):
    return f"{a}{b}"

# unpack
f(*t)
# '12'

解包顺序是定义中字段的顺序。

Yes you certainly can.

from typing import NamedTuple

class Test(NamedTuple):
    a: int
    b: int

t = Test(1, 2)

# destructuring assignment
a, b = t
# a = 1
# b = 2

def f(a, b):
    return f"{a}{b}"

# unpack
f(*t)
# '12'

Unpacking order is the order of the fields in the definition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文