Question 22
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)print(==Missing code here===)Which of the following statement(s) prints the output without any KeyError exception?