PEP 308: Conditional Expressions - The Ternary Operator
TL;DR
PEP 308 introduced conditional expressions in Python 2.5 with the syntax value_if_true if condition else value_if_false
, providing a concise way to assign values based on conditions.
PEP 308 introduced conditional expressions in Python 2.5 with the syntax value_if_true if condition else value_if_false
, providing a concise way to assign values based on conditions.