DEV Community

Discussion on: We don't need a ternary operator

Collapse
 
thomasjunkos profile image
Thomas Junkツ

Speaking of python, there are conditional expressions docs.python.org/2.5/whatsnew/pep-3...

which is, I think, the only valid use case for ternaries: providing initial values based on a condition.

Apart from that a simple if clause to return early does the trick. No need for nesting ternaries.