[Solved] Python script for reformatting a text file into a csv using Python
This could be done easily using a regular expression but I am guessing you do not wish to use that. Instead the problem can be solved by reading the file in a line at a time and deciding if the line starts with a number followed by a .. If it does, start you start … Read more