For Loop

     

  • Print 5th, 6th, 11th index number rows
  •  

    {% for c in range(colscount) %}
    {{headerdata[c]}}
    {% endfor %}
    {% for i in range(rowscount) %}
    {% for c in range(colscount) %}
    {{rowsdata[i][c]}}
    {% endfor %}
    {% endfor %}