✏️ Explanatory Question
| Precedence | Operator | Description |
|---|---|---|
| 1 | () | Parentheses (grouping) |
| 2 | +x, -x | Positive, negative |
| 3 | ** | Exponentiation |
| 4 | *, /, //, % | Multiplication, division, floor division, modulus |
| 5 | +, - | Addition, subtraction |
| 6 | <<, >> | Bitwise shift operators |
| 7 | & | Bitwise AND |
| 8 | ^ | Bitwise XOR |
| 9 | | | Bitwise OR |
| 10 | <, <=, >, >= | Comparison operators |
| 11 | ==, != | Equality operators |
| 12 | not | Logical NOT |
| 13 | and | Logical AND |
| 14 | or | Logical OR |
| 15 | if else | Conditional expression |
| 16 | =, +=, -=, *=, /=, //=, %=, &=, ^=, |=, <<=, >>= | Assignment operators |