Newbie Programming Mistakes: Difference between revisions

 
Line 3: Line 3:
If you have a bool, you can just use it instead of comparing to <code>true</code> or <code>false</code>:
If you have a bool, you can just use it instead of comparing to <code>true</code> or <code>false</code>:
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
# some code which produces a bool b
# some code which produces bool b
b = a > 5
b = a > 5
# return b == false
# return b == false