Question 3
Consider the following Python code snippet.
from jinja2 import Templatetemp = """{% for num in seq|reject("even") %}{{ num+2 }}{% endfor %}"""seq = [6,5,71,13,30,22]output = Template(temp)print(output.render(seq = seq))What will be the output if the given code is executed?