gpt4 book ai didi

python - 如何在 jinja2 中使用 enumerate(zip(seq1,seq2))?

转载 作者:行者123 更新时间:2023-12-05 01:39:57 36 4
gpt4 key购买 nike

我正在尝试使用 Django 为一些 RNA 序列着色。我正在使用 enumerate 和 zip 在列表中查找等于索引。例如:

for i, (a, b) in enumerate(zip(seq1, seq2)):
if a == b and i not in green:
<p style="color: green;">{{i}}</p>

elif a != b and i not in red:
<p style="color: red;">{{i}}</p>

我在我的模板中收到这个错误:

'for' statements should use the format 'for x in y': for i, (a, b) in enumerate(zip(seq1, seq2)):

最佳答案

Django doesn't allow arbitrary code in for loop templates ; you can't even loop over a simple range defined in the template .它基本上是在告诉您,您只能执行简单的 for 循环,即每个循环从一个简单的输入可迭代对象中读取一个项目。

解决方案是在呈现模板的代码中创建“要迭代的东西”,并将其作为上下文的一部分传入,然后对其进行迭代。

关于python - 如何在 jinja2 中使用 enumerate(zip(seq1,seq2))?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57414751/

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