just wondering what's the easiest way to do this.. I have a file with the following contents:
01 04
02 04
04 04
I plan to edit my file to append "missing to the file, since 04 means there are 4 items, but number 3 is missing:
01 04
02 04
#missing
04 04
What is the easiest way to do this? I am pretty sure it's a simple fix, just that I am new to python and I keep trying very long-winded ways to implement this.
Hope to hear something from here, thanks everyone!