Question 14
Consider the following Python code snippet.
file.py
from string import Template as makeTemplatefrom jinja2 import Templateimport sys
var = sys.argv[2]
data = {"name": "Alice", "activity": "data analysis", "tool": "Python", "goal": "insights"}
temp = "{{name}} performs $activity using $tool to gain {{goal}}."
if var == "python": temp = makeTemplate(temp) out = temp.substitute(data) output = Template(out) output = output.render(data) print(output)else: temp = Template(temp) output = temp.render(data) print(output)What will be printed on the terminal for the command python file.py ml python ?