vote up 1 vote down star
1

I'm trying to write a very simple Python utility for personal use that counts the number of lines in a text file for which a predicate specified at the command line is true. Here's the code:

import sys

pred = sys.argv[2]
if sys.argv[1] == "stdin" :
    handle = sys.stdin
else :
    handle = open(sys.argv[1])
result = 0
for line in handle :
    eval('result += 1 if ' + pred + ' else 0')
print result

When I run it using python count.py myFile.txt "int(line) == 0", I get the following error:

  File "c:/pycode/count.py", line 10, in <module>
    eval('toAdd = 1 if ' + pred + ' else 0')
  File "<string>", line 1
    toAdd = 1 if int(line) == 0 else 0

This looks like perfectly valid Python code to me (though I've never used Python's eval before, so I don't know what its quirks, if any, are). Please tell me how I can fix this to make it work.

flag

63% accept rate

5 Answers

vote up 3 vote down check
#!/usr/bin/env python
import fileinput, sys

pred = eval('lambda line: ' + sys.argv[1])
print sum(1 for line in fileinput.input(sys.argv[2:]) if pred(line))

Usage: pywc.py predicate [FILE]...
Print number of lines that satisfy predicate for given FILE(s).
With no FILE, or when FILE is -, read standard input.

link|flag
This is excellent, a great improvement over the other versions in simplicity and efficiency. – Kragen Javier Sitaker Sep 22 at 1:41
Thanks. This is a heck of a lot faster than the other versions, I guess because the interpreter parses and compiles the predicate O(1) instead of O(N) times. – dsimcha Sep 29 at 18:11
vote up 7 vote down

Try using exec instead of eval. The difference between the 2 is explained here

link|flag
Thanks. Simple question, simple answer. – dsimcha Sep 21 at 20:57
you're very welcome! – ennuikiller Sep 21 at 22:27
vote up 5 vote down

try:

for line in handle:
  result += 1 if eval(pred) else 0
link|flag
vote up 2 vote down

The python eval() function evaluates expressions, not statements. Try replacing the eval() line with:

result += eval(pred + " else 0")
link|flag
1  
eval('int(line) == 0 else 0') produces SyntaxError. – J.F. Sebastian Sep 21 at 21:16
vote up -1 vote down

Really, you are looking for the compile function:

>> a = compile("toAdd = 1 if int('0') == 0 else 0", 'tmp2.py', 'exec')
>>> eval(a)
>>> toAdd
1

eval is intended only for expressions... compile while compile sequence of statements into a codeblock that can then be eval'ed.

link|flag

Your Answer

Get an OpenID
or

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