Question 23
Consider the following Python code snippet “code.py”.
Filename: code.py
import sysfrom jinja2 import Templatevars = sys.argv
course_technologies = {'python': 'backend', 'javascript': 'frontend'}template = Template("This course focuses on {{ technology }} development.")
if len(vars) > 2 and vars[2] in course_technologies: course = vars[1] technology = course_technologies[course] print(template.render(technology=technology))else: print("Please specify a valid course name!")Which of the following will be the correct command line input to the terminal to get the output : This course focuses on backend development. ?