Can I use a List Comprehension to get Line Indexes from a file? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T21:22:37Zhttp://stackoverflow.com/feeds/question/835572http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/835572/can-i-use-a-list-comprehension-to-get-line-indexes-from-a-file0Can I use a List Comprehension to get Line Indexes from a file?PyNEwbie2009-05-07T16:04:39Z2009-05-07T16:22:31Z
<p>I need to identify some locations in a file where certain markers might be. I started off thinking that I would use list.index but I soon discovered that returns the first (and only the first) item. so I decided to implement my own solution which was</p>
<pre><code>count=0
docIndex=[]
for line in open('myfile.txt','r'):
if 'mystring' in line:
docIndex.append(count)
count+=1
</code></pre>
<p>But this is Python right. There has to be a simpler solution since well it is Python. Hunting around this site and the web I came up with something slightly better</p>
<pre><code>newDocIndex=[]
for line in fileinput.input('myfile',inplace=1):
if 'mystring' in line:
newDocIndex.append(fileinput.lineno())
</code></pre>
<p>I know this is too much info but since I finished grading finals last night I thought well-this is Python and we want to make some headway this summer-lets try a list comprehension</p>
<p>so I did this:</p>
<pre><code>[fileinput.lineno() for line in fileinput.input('myfile',inplace=1) if 'mystring' in line]
</code></pre>
<p>and got an empty list. So I first guessed that the problem is that the item in the for has to be the item that is used to build the list. That is if I had line instead of <code>fileinput.lineno()</code> I would have had a non-empty list but that is not the issue.</p>
<p>Can the above process be reduced to a list comprehension?</p>
<p>Using the answer but adjusting it for readability</p>
<pre><code>listOfLines=[lineNumb for lineNumb,dataLine in enumerate(open('myfile')) if 'mystring' in dataLine]
</code></pre>
http://stackoverflow.com/questions/835572/can-i-use-a-list-comprehension-to-get-line-indexes-from-a-file/835586#8355867Answer by sykora for Can I use a List Comprehension to get Line Indexes from a file?sykora2009-05-07T16:07:15Z2009-05-07T16:07:15Z<p>What about this?</p>
<pre><code>[index for index,line in enumerate(open('myfile.txt')) if 'mystring' in line]
</code></pre>