Question 25
Consider the following jinja2 template, and answer the given subquestions.
from jinja2 import Template
temp = """ Data science combines {{a}} abilities and competence in {{b}}, {{c}} to draw important insights from data. """
to_render = Template(temp)
out = to_render.render(data)print(out)What will be the output on the terminal for: