All problems
EasyPython Basics
Boolean operators
Combine booleans using and / or / not. Print whether the student is eligible: age >= 18 AND has a valid id.
- #booleans
- #logic
Sample input
age = 20, has_id = True
Sample output
True
boolean-ops.py
Output
Press "Run code" to execute.
