No need for flag, mode code around and works like a champ.
So i have the following logic and would like to add a flag or setup in a way that once the for loop is complete, then re-open the new file to remove key rows
This above logic, goes thru my raw data file and removed rows that are invalid and creates a new file with just valid rows, now from that file, i need to remove certain rows based on another post i did yesterday..

So i have the following logic and would like to add a flag or setup in a way that once the for loop is complete, then re-open the new file to remove key rows
for line in file_in: match = datetime_rx.match(line) if match: file2.write(str(match.groups()[0]) + ',' + match.groups()[1] + '\n') else: print(line)Is it better to have some variable that is set once the "if match" is complete or is it safe to just put the next logic outside of the "for line in file_in:"
This above logic, goes thru my raw data file and removed rows that are invalid and creates a new file with just valid rows, now from that file, i need to remove certain rows based on another post i did yesterday..