Question 3
Consider the following Python code snippet.
from string import Template
sentence = Template("A $var1 fox $var2 over the $var3 dog")
output = sentence.safe_substitute(word_dict)
print(output)Which of the following options correctly represent(s) the dictionary word_dict, such that the code does not throw any error when run in the terminal?