abs_value(n) that returns the absolute value of n using a single conditional (ternary) expression — no if statement blocks and no built-in abs().abs_value(-8)
8
Negating -8 gives 8.
abs_value(3)
3
3 is already non-negative.
Python's ternary form is `value_if_true if condition else value_if_false`.
Return `n` when `n >= 0`, otherwise return `-n`.