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

this is my code :

s = ''.join('%s: %s </br>' % (a,getattr(user, a) ) for a in dir(user))

and i want to add a if in this code , so i write :

s = ''.join('%s: %s </br>' % (a,getattr(user, a) if !a.index('__') ) for a in dir(user))

i think it is not right ,

what is the right way to add a if in the for loop ,

thanks

share|improve this question

2 Answers

up vote 1 down vote accepted

You want the condition to evaluate on each iteration through the loop at the end, like this:

s = ''.join('%s: %s </br>' % 
               (a,getattr(user, a)) for a in dir(user) if '__' not in a
           )

Edit: Sorry, fixed the parentheses to the appropriate nesting.

Edited: Changed the conditional (didn't even pay attention to it before, thanks Falmarri.

share|improve this answer
3  
Also, instead of !a.index('__') you should use something more pythonic, like if '__' not in a – Falmarri Dec 20 '10 at 8:35
if !a.index('__') --- > if not a.index('__') – zjm1126 Dec 20 '10 at 8:49
1  
str not in a is the natural pythonic way to do this (edited answer to reflect this) - it just reads like English. – David Dec 20 '10 at 9:28
-2 Firstly, ! is a syntax error. Secondly, str.index('') is not only not "Pythonic", it doesn't work. If '' is not in the string, an exception will be raised. – John Machin Dec 20 '10 at 19:36

The syntax is for iterated in interator if condition(iterated), so you need to move the if after the dir(user):

s = ''.join('%s: %s </br>'
        % (a,getattr(user, a) for a in dir(user) if !a.index('__') ))
share|improve this answer
-2 ! is a syntax error. An exception will be raised when str.index fails. – John Machin Dec 20 '10 at 19:31

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.