Logical Operators
Logical operators are used to combine conditional statements:
| Operator | Description | Example | Try it |
|---|---|---|---|
| and | Returns True if both statements are true | x < 5 and x < 10 | |
| or | Returns True if one of the statements is true | x < 5 or x < 4 | |
| not | Reverse the result, returns False if the result is true | not(x < 5 and x < 10) |
Examples
Example
x = 5
print(x > 0 and x < 10)
Example
x = 5
print(x < 5 or x > 10)
Example
x = 5
print(not(x > 3 and x < 10))