Skip to content

Not

Not(expr)

or

!expr

Logical Not function (negation). Returns True if the statement is False. Returns False if the expr is True

See

Examples

>> !True
False
>> !False
True
>> !b
!b

Implementation status

  • ✅ - full supported

Github