Question: We pass in a 2 dimensional list. You should output the 3rd element of the 2nd row. # Get our list from the command line
We pass in a 2 dimensional list. You should output the 3rd element of the 2nd row.
# Get our list from the command line arguments import sys list2d= sys.argv[1:] # Convert the command line arguments into 2d list for i in range(0,len(list2d)): list2d[i]= list2d[i].split(',') # Write your code below
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
