Note that there are some explanatory texts on larger screens.

plurals
  1. POWriting certain lines to a file in python
    primarykey
    data
    text
    <p>I have a large file called <code>fulldataset</code>. I would like to write lines from fulldataset to a new file called newdataset. I only want to write the lines from fulldataset though that contain the id numbers present in the listfile. Also all the id numbers start with XY. The id numbers occur in the middle of each line though. </p> <p>Here is an example line from list file:</p> <pre><code>Robert, Brown, "XY-12344343", 1929232, 324934923, </code></pre> <p>Here is the program I have so far. It runs fine, but doesn't write anything into the new file. </p> <pre><code>datafile = open('C:\\listfile.txt', 'r') completedataset = open('C:\\fulldataset.txt', 'r') smallerdataset = open('C:\\newdataset.txt', 'w') matchedLines = [] for line in datafile: if line.find("XY"): matchedLines.append( line ) counter = 1 for line in completedataset: print counter counter +=1 for t in matchedLines: if t in line: fulldataset.write(line) del line break datafile.close() completedataset.close() fulldataset.close() </code></pre> <p>EDIT:</p> <p>Ok here is the new program:</p> <pre><code>datafile = open('C:\\tryexcel33.txt', 'r') completedataset = open('C:\\fulldataset.txt', 'r') smallerdataset = open('C:\\newdataset.txt', 'w') counter = 1 for line in completedataset: print counter counter +=1 if any( id in line for id in datafile ): smallerdataset.write( line ) break datafile.close() completedataset.close() fulldataset.close() </code></pre> <p>I still don't have anything being written to the new file. I think a problem might be that in the full file the id numbers have a " in front of them but this doesn't exist in the listfile. Any thoughts?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload