I\'m trying to open a file and create a list with each line read from the file.
i=0 List=[\"\"] for Line in inFile: List[i]=Line.split(\",\")
I am not sure about Python but most languages have push/append function for arrays.