> So I suppose
> 
> if (10 > 5)
> 
> would be the same as
> 
> if (10 > 5) == True
> 
> because (10 > 5) does evaluate to "True".

Yes...and similarly,

if ((10 > 5) == True) == True

for the same reason...as does

if (((10 > 5) == True) == True) == True

as does... :*)

-tkc



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to