There are several ways you can solve the problem.
One solution would be to combine the two lists with zip beforehand.
list_1 = [
('(Retail)', 'Example'),
('(1)(Distributor)', 'Example'),
('(Ditributor)', 'Example'),
('False', 'Example')
]
list_2 = [35.0, 147.0, 50.0, 180.0]
list_3 = [a + (b,) for a,b in zip(list_1, list_2)]
<table>
{% for a,b,c in list_3: %}
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
{% endfor %}
</table>
But you can also use the current index to access the values.
<table>
{% for a,b in list_1 %}
<tr>
<td>a</td>
<td>b</td>
<td>{{ list_2[loop.index0] }}</td>
</tr>
{% endfor %}
</table>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…