## Explanation Use the ternary operator if it's reasonable. ## Example ``` # Bad if a: b = c else: b = d # Good b = c if a else d ```