Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is the following syntax right in Python?

(if 'SU' in line or 'AU' in line or 'VU' in line or 'rf' in line and line.find('/*') == -1) and (BUILDROOT in line):
    lineMatch = False
share|improve this question
The if-statement does not start a loop. – Matthias Nov 12 '12 at 8:45
What is the result of running your code? The exception you get should tell you its not correct. – Ber Nov 12 '12 at 9:03
1  
You should remove the ( from before the if. – Bakuriu Nov 12 '12 at 9:07

2 Answers

up vote 7 down vote accepted

Try this:

if any(x in line for x in ('SU', 'AU', 'VU', 'rf')) and '/*' not in line and BUILDROOT in line:
    lineMatch = False
share|improve this answer

No, the if should not be inside the brackets.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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