Prev
Python for you and me
Next
5.3. Truth value testing
The elegant way to test Truth values is like
if
x
:
pass
Don't do this
if
x
==
True
:
pass
Prev
5.2. Else statement
Up
Home
Next
Chapter 6. Looping