## Explanation Use the "in" operator and a list / tuple instead of multiple comparisons. ## Example ``` # Bad if a == b or a == c: d # Good if a in [b, c]: d ```