Question 9
Consider the following Python code snippet:
main.py
import sysdef process(v): # Missing code 1v = sys.argv# Missing code 2print(output)We are executing above main.py in command line with command python main.py 1 2 3 4 5 . Which of the following codes when replaced at #Missing code 1 and #Missing code 2 will render the output below:
1,2,3,4,5