Question 5
Consider two Python files, main.py and utils.py with the following code snippets.
File1: main.py
import sysimport utilsprint('Processing: ' + sys.argv[2])File2: utils.py
import sysprint('Module: ' + sys.argv[0])What is the output of the following command "python main.py data.txt output.txt" when run on terminal?