Re: Coding style



Steve Holden wrote:

I'll bet you still write

if a>3 == True:

don't you ;-)

I'll second that.

if (a>3) == True:

is the correct way :-)

Peter
.