gpt4 book ai didi

Python:复杂的列表理解,其中一个变量依赖于另一个变量(x for x in t[1] for t in tests)

转载 作者:太空狗 更新时间:2023-10-29 20:34:59 24 4
gpt4 key购买 nike

我想做这样的事情:

all = [ x for x in t[1] for t in tests ]

测试看起来像:

[ ("foo",[a,b,c]), ("bar",[d,e,f]) ]

所以我想得到结果

all = [a,b,c,d,e,f]

我的代码不工作,Python 说:

UnboundLocalError: local variable 't' referenced before assignment

有什么简单的方法可以做到这一点吗?

最佳答案

它应该反过来工作:

all = [x for t in tests for x in t[1]]

关于Python:复杂的列表理解,其中一个变量依赖于另一个变量(x for x in t[1] for t in tests),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1700113/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com