Question 6
Consider the following Python code snippet.
from string import Template
text = "The $color car is parked in front of the $building."
template = Template(text)
print(=== OUTPUT ===)Which of the following statements, when substituted in place of === OUTPUT ===, will throw a KeyError?