Question 14
Consider the following Python code snippet.
file.py
import sys
courses = { 1: "App Dev I", 2: "App Dev II", 3: "Machine Learning", 4: "Deep learning" }
arguments = sys.argv
if courses[int(sys.argv[2])] in "App Dev II": print("course found",courses[int(sys.argv[2])])else: print("No course found!")What will be output on the terminal for the command python file.py courses 1?