List of Operators

OperatorDescription
a + ba plus b
a - ba minus b
a * ba multiplied by b
a / ba divided by b
a % ba modulo b
a ** b
a ** b
a to the power of b

Bitwise Operators

OperatorsNumber of operandsDescription
&2bitwise and
|2bitwise or
^2bitwise xor
~1bitwise negation
^~ or ~^2bitwise xnor