vote up 0 vote down star

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

count=0
docIndex=[]
for line in open('myfile.txt','r'):
    if 'mystring' in line:
        docIndex.append(count)
    count+=1

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

newDocIndex=[]
for line in fileinput.input('myfile',inplace=1):
    if 'mystring' in line:
	newDocIndex.append(fileinput.lineno())

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

so I did this:

[fileinput.lineno() for line in fileinput.input('myfile',inplace=1) if 'mystring' in line]

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 fileinput.lineno() I would have had a non-empty list but that is not the issue.

Can the above process be reduced to a list comprehension?

Using the answer but adjusting it for readability

listOfLines=[lineNumb for lineNumb,dataLine in enumerate(open('myfile')) if 'mystring' in dataLine]
flag

before "adjusting for readability" read python.org/dev/peps/pep-0008 – SilentGhost May 7 at 16:27
I don't understand your point though I skimmed the reference. – PyNEwbie May 7 at 16:39
1  
SilentGhost may mean that typical python convention recommends using underscores between words in variable names. For example: list_of_lines and line_numb rather than listOfLines and lineNumb. – Jarret Hardie May 7 at 17:27

1 Answer

vote up 7 vote down check

What about this?

[index for index,line in enumerate(open('myfile.txt')) if 'mystring' in line]
link|flag
Thanks, unless I did something wrong no – PyNEwbie May 7 at 16:09
no what? it does exactly what your code does in a nice pythonic manner. – SilentGhost May 7 at 16:11
I did somethinng wrong wow it worked thanks – PyNEwbie May 7 at 16:11
2  
This solution is why I don't particularly care for list comprehensions. They are incomprehensible. I say that tongue in cheek, but really, why is this considered "better" than something more straight-forward? – Bryan Oakley May 7 at 16:14
1  
I am learning that they are actually easier to read. I would have agreed with you six months ago. I am going to make an edit and see if that is not easier to read – PyNEwbie May 7 at 16:19
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.