Opening the paper…
Figure from the original question paper Figure from the original question paper Consider the following Python code snippet. from jinja2 import Template temp = """{% 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?