Operators
Arithmetic Operators
Operator | Name | Description | Example |
---|---|---|---|
| Addition | Sum or concatenate values |
|
| Subtraction | Subtract right to left |
|
| Multiplication | Multiplies values |
|
| Division | Divide left by right |
|
| Modulus | Divide left by right and returns remainder |
|
| Exponent | Exponencial calculation (power) |
|
| Floor Division | Divide left by right rounding to the lowest int |
|
Comparison Operators
Operator | Name | Description | Example |
---|---|---|---|
| Equals | If the values are equals |
|
| Not equals | If the values are not equals |
|
| Greather than | If the first value is greather than the second |
|
| Less than | If the first value is less than the second |
|
| Greather than or equals | If the first value is greather than or equals the second |
|
| Less than or equals | If the first value is less than or equals the second |
|
Assignment Operators
Operator | Name | Description | Example |
---|---|---|---|
| Assign | Assign the value |
|
| Add and assign | Sum and assign the value |
|
| Subtract and assign | Subtract right to left and assign the value |
|
| Multiply and assign | Multiply and assign the value |
|
| Divide and assign | Divide left by right and assign the value |
|
| Modulus and assign | Divide left by right and assign assign the ramainder |
|
| Exponent and assign | Assign the exponential calculation |
|
| Floor division and assign | Divide left by right and assign rounding to the lowest int |
|
Logical Operators
Operator | Name | Description | Example |
---|---|---|---|
| Logical AND | If both are True |
|
| Logical OR | If any of both is True |
|
| Logical NOT | Reverse the logical state |
|
Membership Operators
Operator | Description | Example |
---|---|---|
| If the value is in the variable |
|
| If the value is not in the variable |
|
Identity Operators
Operator | Description |
---|---|
| If the variables point to the same object |
| If the variables not point to the same object |