Coding style

Peter Otten __peter__ at web.de
Mon Jul 17 14:41:21 EDT 2006


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



More information about the Python-list mailing list