• DataFrame is a two dimentional array
  • It is in tabular format
  • It Consists of row indexs and column indexes
  • Index count starts from 0(zero)
  • Each column termed as SERIES
  • SERIES is a single dimentional array
  • {% for c in range(colscount) %}
    {{headerdata[c]}}
    {% endfor %}
    {% for i in range(rowscount) %}
    {% for c in range(colscount) %}
    {{totalrows[i][c]}}
    {% endfor %}

    {% endfor %}