Question 4
Consider the following code block and select the correct option regarding the output when we run the python file app.py.
app.py
from jinja2 import Template
template=''' Welcome to {Degree} DEGREE First level to clear is {{level}} '''
rendered=Template(template)output=rendered.render(Degree="IITM BS",level="Foundation")print(output)