Question 10
Consider the following code.
from jinja2 import Templatetemplate = """ {% for i in range(2) %} {{user[i]}}'s marks are {{mark[i]}} {% endfor %} """user = { 0: "Balu", 1: "Kala"}mark = [[30,40,56,78],[25,67,80,90]]x = Template(template)print(x.render(user = user, mark = mark))What will be the output of above program?