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