bool
Season 02 - Introduction to Python Programming
Numbers & Booleans
Operator | Description | Example | Result |
---|---|---|---|
+ |
Addition | 100 + 100 |
200 |
- |
Subtraction | 20 - 10 |
10 |
* |
Multiplication | 5 * 5 |
25 |
/ |
Floating-point division | 5 / 2 |
2.5 |
// |
Integer (truncating) division | 5 // 2 |
2 |
% |
Modulus (remainder) | 5 % 2 |
1 |
** |
Exponentiation | 5 ** 2 |
25 |
Operator | Description | Example | Result |
---|---|---|---|
== |
Equal to | 5 == 5 |
True |
!= |
Not equal to | 5 != 5 |
False |
< |
Less than | 4 < 5 |
True |
>= |
Greater than or equal to | 5 >= 5 |
True |
<= |
Less than or equal to | 4 <= 5 |
True |
> |
Greater than | 5 > 4 |
True |