I'm need to pass a 2D list to my program via the command line like the following:
python myscript.py [[int,int,int],[int,int,int]]
I'm getting the run time param via sys.argv[1], but its interpreted as a string. I'm having a hard time converting it into a 2D list object.