在循环列表中嵌套双变量for循环



我正在尝试通过实现理解列表来改进我的代码。

我删除了下面的语句。

test = [expression.match(self.sourceModel().index(source_row, column, source_parent).data())
for expression in liste for liste, column in self._filters.items()]

测试是字符串之间的正则表达式匹配,来自表达式列表,包含在字典中的列表,以列作为键,以及表达式列表作为值

我不明白为什么我的变量" listen "标记为未引用,因为它是在最后一个for循环中提到的,有什么想法吗?

Code

test = [expression.match(self.sourceModel().index(source_row, column, source_parent).data()) for expression in liste for liste, column in self._filters.items() for expression in liste ]

解释

你的liste变量没有被引用,因为你在一个循环中引用了列表变量,而这个循环只在你使用了变量本身之后才执行!!

请记住,将列表理解视为反向结构是正确的,在item定义之前,然后是loop定义,但在每个部分的逻辑顺序与正常循环代码

相同。

相关内容

  • 没有找到相关文章

最新更新