I'm passing 3 lists to my jinja template through my python file.
list1 = [1,2,3,4]
list2 = ['a','b','c','d']
list3 = [5,6,7,8]
All these values correspond with eachother, so 1 matches with 'a' and 5, 2 with 'b' and 6, etc.
In my template I'm printing them out on the same line.
How do I do numerical indexing to print them out?
As so
1 a 5
2 b 6
3 c 7
The only thing I know is directly accessing the object through the loop like
{%for item in list%}
{{item}}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…