You need to check if each item is greater than '0.02', not whether the sequence is greater.
best = [x for x in vals if x > '0.02']
Your original expression, [x for x in vals > '0.02'] is parsed as [x for x in (vals > '0.02')]. Since vals > '0.02' is a boolean value, and not a sequence, it's not possible to iterate over it.
EDIT: I updated this answer to use the string '0.02' per Joe's suggestion in the comments (thank you). That works in this scenario, but in the event that you really wanted to do a numeric comparison instead of a lexicographic one, you could use:
best = [x for x in vals if float(x) > 0.02]
This converts x to a float so that you are comparing a floating-point number to another floating-point number, probably as intended. The result of the list comprehension will still be a list of strings, since we are collecting [x for ...] and not [float(x) for ...]. Just some food for thought.
numpymay be the right tool for you (just assumed because how you writebest= [... vals> 0.02]. So please provide more context to receive more relevant answers. Thanks – eat Feb 17 '11 at 1:24