Question 17
Consider the following Python code snippet that returns the potential energy stored in an object of a certain mass at a certain height. (PE = mgh, where “g” is acceleration due to gravity).
from jinja2 import Template
x = Template(template)What should be the value of template if;
print(x.render(mass = "5", height = "22")) returns 1100 and
print(x.render()) returns 3000