Bool
Bool has two possible values: true
and false
:
true # A Boolean value that is true
false # A Boolean value that is false
Alternatively, one can write:
Bool(1) # true
Bool(0) # false
Last updated
Was this helpful?
Bool has two possible values: true
and false
:
true # A Boolean value that is true
false # A Boolean value that is false
Alternatively, one can write:
Bool(1) # true
Bool(0) # false
Last updated
Was this helpful?