<div class="gmail_quote">On Mon, Oct 5, 2009 at 3:37 PM, Sander Sweers <span dir="ltr">&lt;<a href="mailto:sander.sweers@gmail.com">sander.sweers@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Thanks Wesly/Vern for the replies.<br>
<div class="im"><br>
On Mon, 2009-10-05 at 21:56 +0200, Luke Paireepinart wrote:<br>
&gt;         if not n == 0<br>
&gt;<br>
</div><div class="im">&gt; if b == True can be written as if b.<br>
&gt;<br>
&gt;<br>
&gt; However,<br>
&gt; if not n == 0 can be written as if n != 0 but NOT as if n.<br>
&gt; The reason why is that 0 is not equivalent to False even though it<br>
&gt; evaluates to False.<br>
&gt; So<br>
&gt; if not n:<br>
&gt; would be true for n = 0 and for n = &quot;&quot; and for n = None<br>
&gt; but<br>
&gt; if n != 0:<br>
&gt; would be true for n = &quot;&quot; and n = None but not n = 0.<br>
<br>
</div>Ah, have not thought about this one. In this case it checks the return<br>
code of a subprocess command which if not zero means build failure. I am<br>
leaving these as they are because in my opinion &quot;if not returncode == 0&quot;<br>
shows clearer what is going on than &quot;if returncode&quot;.<br></blockquote><div><br></div><div>If it&#39;s checking the returncode against a value, Vern makes a good point:</div><div><br></div><div>if returncode != 0 makes a whole lot more sense than &quot;if not returncode == 0&quot;</div>

<div><br></div><div>Though when dealing with an integer return code, doesn&#39;t it make more sense to use the &quot;is&quot; operator?</div><div><br></div><div>if returncode is 0:</div><div>    #do something</div><div><br>

</div><div>if returncode is not 0:</div><div>    #do something</div><div><br></div><div>-Wayne</div></div>