Question 20
Consider the following Python code.
from string import Template
output = "List of courses in IITM BS Diploma : $c1, $c2, $c3, $c4, $c5"my_template = Template(output)==Missing code here===Which of the following statement(s) should replace ==Missing code here=== so that it prints the output without any KeyError exception?