gpt4 book ai didi

python - mako 模板中 IF 语句的问题

转载 作者:太空狗 更新时间:2023-10-30 00:37:15 31 4
gpt4 key购买 nike

我有 mako 模板,我在 for 循环中检查来自简单字典的条件,例如:

% for el in seq:
% if el["attr"] == 1:
...
elif:
....
else:
.....
% endif

如果我想在此循环中添加另一个 IF 语句,例如:

 %if el["attr1"] == 1:
....
%endif

我有错误:“SyntaxException:关键字‘endif’与文件中的关键字‘for’不匹配”一个 FOR 循环中可能有两个或多个 IF 语句?

最佳答案

您缺少 %endfor 和 % from elif 和 else 语句:

%for el in seq:
%if foo:
pass
%elif bar:
pass
%else:
pass
%endif
%endfor

关于python - mako 模板中 IF 语句的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6621401/

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