In Chapter 5 you made decisions with one condition at a time. But real decisions are rarely that simple:
- Log in: correct email **and** correct password
- Get a discount: is a student **or** has a coupon
- Block access: is **not** an admin
Logical operators let you combine conditions. and, or, not — three simple words that make your logic dramatically more powerful.
and requires **both** sides to be True:
`
True and True → True
True and False → False
`
Run this. Then change password_correct to False and see what happens.