Python 嵌套字典理解与集合

发布于 2024-10-10 18:21:42 字数 467 浏览 1 评论 0原文

有人可以解释如何进行嵌套字典理解吗?

>> l = [set([1, 2, 3]), set([4, 5, 6])]
>> j = dict((a, i) for a in s for i, s in enumerate(l))
>> NameError: name 's' is not defined

我本来希望:

>> j
>> {1:0, 2:0, 3:0, 4: 1, 5: 1, 6: 1}

我只是问了一个 上一个问题 关于一个更简单的字典理解,其中括号发电机功能被减少。为什么最左边的推导式中的s不被识别?

Can someone explain how to do nested dict comprehensions?

>> l = [set([1, 2, 3]), set([4, 5, 6])]
>> j = dict((a, i) for a in s for i, s in enumerate(l))
>> NameError: name 's' is not defined

I would have liked:

>> j
>> {1:0, 2:0, 3:0, 4: 1, 5: 1, 6: 1}

I just asked a previous question about a simpler dict comprehension where the parentheses in the generator function were reduced. How come the s in the leftmost comprehension is not recognized?

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

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

发布评论

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

评论(1

最佳男配角 2024-10-17 18:21:43

只需颠倒两个循环的顺序即可:

j = dict((a, i) for i, s in enumerate(l) for a in s)

Just reverse the order of the two loops:

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