我可以解压/解构typing.NamedTuple吗?
这是一个简单的问题,所以我很惊讶我找不到它被问到(如果我错过了它,我很抱歉),并且当我考虑重构以用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的你当然可以。
解包顺序是定义中字段的顺序。
Yes you certainly can.
Unpacking order is the order of the fields in the definition.