从 2 元组列表创建字典

发布于 2024-11-08 12:19:38 字数 354 浏览 6 评论 0原文

我有一个像这样的 2 元组列表:

l = [('a', 1), ('b', 2)]

我希望能够将其映射到字典对象上,这样我就可以做类似的事情

l.a #=> 1

所以我尝试了这个,但为什么它失败了?

d = reduce(lambda y,x : y.update({x[0]:x[1]}),l,{})

这给出了错误:

属性错误:“NoneType”对象有 没有属性“更新”

我做错了什么?

I have a list of 2-tuples like this:

l = [('a', 1), ('b', 2)]

and I want to be able to map this onto a dictionary object, so that I can do something like

l.a #=> 1

So I tried this, but why does it fail?

d = reduce(lambda y,x : y.update({x[0]:x[1]}),l,{})

This gives the error:

AttributeError: 'NoneType' object has
no attribute 'update'

What am I doing wrong?

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

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

发布评论

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

评论(2

痴骨ら 2024-11-15 12:19:38
>>> l = [('a', 1), ('b', 2)]
>>> d = dict(l)
>>> d['a']
1 
>>> l = [('a', 1), ('b', 2)]
>>> d = dict(l)
>>> d['a']
1 
∝单色的世界 2024-11-15 12:19:38

为什么不这样做:

d = dict(l)

另外,为了回答你的问题,你的解决方案失败了,因为 y (这是一个 2 元组)没有方法更新,因为它不是一个字典。值得庆幸的是,您所做的事情是内置的。

Why not just do this:

d = dict(l)

Also, to answer your question, your solution is failing because y (which is a 2-tuple) has no method update, since it's not a dict. Thankfully, what you're doing is built right in.

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