从 2 元组列表创建字典
我有一个像这样的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不这样做:
另外,为了回答你的问题,你的解决方案失败了,因为 y (这是一个 2 元组)没有方法更新,因为它不是一个字典。值得庆幸的是,您所做的事情是内置的。
Why not just do this:
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.