Sometimes you need to combine multiple conditions.
Python provides three logical operators: python and # Both must be True or # At least one must be True not # Inverts True/False Examples: python if age >= 18 and has_id: print("Can enter") if is_weekend or is_holiday: print("Day off!") if not is_banned: print("Welcome back") and requires both conditions to be True. or requires at least one. not flips True to False and vice versa.