Python Boolean

From NovaOrdis Knowledge Base
Revision as of 19:39, 15 April 2022 by Ovidiu (talk | contribs) (Created page with "=Internal= * Python Language =Overview= <syntaxhighlight lang='python'> x = True type(x) <class 'bool'> </syntaxhighlight> =Operators= ==OR <tt>|</...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

x = True
type(x)
<class 'bool'>

Operators

OR | and |=