°
The negation operator has the maximum priority 7: !, not
This operator switches true (anything except 0) to false (0) and vice versa. You can use '!' or 'not', whichever you prefer.
a = 3 b = 0 Print (!a) 0 Print (not b) 1