Question 6
Consider the following Python code snippet.
filename: code.py
import sysmy_args = sys.argv
print("The python file name is:", my_args[1])print(f"My username is: {my_args[3]}{my_args[4]}")What will be the output on console if the command given is:
python code.py output.py Appdev Michael 2003 1003