Arithmetic operators

+    sum                    integers, floats, complex values, strings
-    difference             integers, floats, complex values
*    product                integers, floats, complex values
/    quotient               integers, floats, complex values
%    remainder              integers

&    bitwise AND            integers
|    bitwise OR             integers
^    bitwise XOR            integers
&^   bit clear (AND NOT)    integers

<<   left shift             integer << integer >= 0
>>   right shift            integer >> integer >= 0

go to about Arithmatic Operators

 


 

Comparation operators 

==    equal
!=    not equal
<     less
<=    less or equal
>     greater
>=    greater or equal

go to about comparation operators

 


 

Logical operators

Logical operators apply to boolean values and yield a result of the same type as the operands. The right operand is evaluated conditionally.

&&    conditional AND    p && q  is  "if p then q else false"
||    conditional OR     p || q  is  "if p then true else q"
!     NOT                !p      is  "not p"

go to about logical operators

 


 

Adress operators

go to about adress operators

 


 

Receive operator

go to about recive operator