Question 11
Consider two python files, one.py and two.py with following code snippets.
File1: one.py
import sysimport twoprint(f'{sys.argv[1]} {sys.argv[3]}')File2: two.py
import sysprint(f'{sys.argv[2]} {sys.argv[0]}')What is the output of the following command “python one.py two.py two.py one.py ”?