Title 1 Title 2
DKTM 00001 DKTM 00008
DKTM 00009 DKTM 00017
DKTM 00029 DKTM 00038
DKTM 00050 DKTM 00061
DKTM 00062 DKTM 00073
Thanks for everyone who continued to read. My dilemma is that I have a CSV with missing rows of data. There are two columns, One starting with a row of numbers (Like DKTM00001) and ending with a row (DKTM000008) as stated The columns repeat like this for the numbers, but in some cases, a row of numbers end up missing (Stated above). I want to find those row of missing numbers and output them to the screen. (I would ask to put them to a output file, but I want to do this, to teach myself Python.)
An example of the desired output:
DKTM 00018 DKTM 00028
DKTM 00039 DKTM 00049
Thank you in advance! I'm relatively new to Python 3.6.2, so I thought this would be a good exercise. Guess I bit off more than I can chew. I utilized this explanation as a basis(Efficient way to find missing elements in an integer sequence), but downshift's method helped me with the desired output a lot more.