I am relatively new to python, and have run into an issue with reading a strangely formatted output file.
The current format of the output file for each line is [(x,y),.....(x,y)] (tuples nested within a list?) and I need to read each line in the file and output a 3 columned file with columns X Y and Flavor where flavor is the i-th component in a defined variable.
--thanks