0% found this document useful (0 votes)
11 views1 page

Python Boolean Comparisons Guide

Uploaded by

ace
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

Python Boolean Comparisons Guide

Uploaded by

ace
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Python: Boolean and conditionals

# Comparisons: # Equal: == # Not Equal: != # Greater Than: > # Less Than: < #
Greater or Equal: >= # Less or Equal: <= # Object Identity: is # False Values: # False #
None # Zero of any numeric type # Any empty sequence. For example, '', (), []. # Any
empty mapping. For example, {}.

You might also like