Question 25
Consider the following Python code snippet.
from string import Template
statement = Template("the $var1 boxing $var2 jump $var3")
out = statement.substitute(var_dict)
print(out)Which of the following options correctly represent(s) the dictionary var_dict, such that the code does not throw any error when run in the terminal?