`and`, `or`, `not` — combine conditions into compound expressions. Because `and` and `or` have higher precedence than relational operators, you must always parenthesize comparisons: `(x > 0) and (x < 10)`, never `x > 0 and x < 10`.