I have a text file that is formatted as a python list ( [[1,2,3],[4,5,6]] ) and I would like to read it in python as a list
what could I use to accomplish this?
JSON was recommended to me, but I can't seem to parse the syntax. Is there a better/easier/python-ier way?
json.loads(data)?