Paul Rubin wrote: > [EMAIL PROTECTED] writes: > > I think there is, for python. Not that I agree with it. The language > > doesn't prevent you from using the short one-liner style but the idioms > > prefer the line by line(and one single op/action per line) style. > > Are you serious?!! You're saying idiomatic Python prefers > > temp1 = a + b > temp2 = c * d > temp3 = temp1 + temp2 > x = temp3 + e > > to > > x = a + b + (c * d) + e > > ???!!! > > I don't think you look at the same Python code I do ;-).
Not for this particular example, but that is the impression I get, I said the "form/style". Especially when we are talking about reduce/map/filter vs explicit for loop. -- http://mail.python.org/mailman/listinfo/python-list