# Arithmetic (math) operators
| Addition | + |
| --------------------------------- | --- |
| Subtraction | - |
| Multiplication | * |
| Division | / |
| Whole Number division (Quotient) | // |
| Remainder after division (modulo) | % |
| Power | ** |
| Assign value | = |
# Logic (comparison) operators
| Less than | < |
| ------------------------ | --- |
| Less than or equal to | <= |
| Greater than | > |
| Greater than or equal to | >= |
| Equal to | == |
| Not Equal | != |
# Logical Operators