I cannot comment, but I just want to leave my information here.
The answer from VKolev doesn't work if the lists have the exact same number of elements, in that case you have to use loop.index0. Since in jinja, loop.index is 1-indexed and loop.index0 is 0-indexed.
{% for concepto in conceptos %}
<tr>
<td>{{concepto.0}}</td>
<td>{{operas[loop.index0]}}</td>
<td>{{concepto.1}}</td>
<td>{{operas[loop.index0]}}</td>
<td>...</td>
</tr>
{% endfor %}