Question 2
Consider the following Python code snippet.
from jinja2 import Template
newlist = ['apple', 'banana', 'cherry', 'date', 'elderberry', 'fig']
this_template = """ {% for item in data %} {% if item|length<6 %} {{ item }} {% endif %} {% endfor %} """
out = Template(this_template)
print(out.render(data=newlist))What will be the output on the terminal?