Sometimes, we want to add a ternary conditional expression with Python.
In this article, we’ll look at how to add a ternary conditional expression with Python.
How to add a ternary conditional expression with Python?
To add a ternary conditional expression with Python, we can following the following format:
a if condition else b
where a
and b
are expressions.
For instance, if we have:
'true' if True else 'false'
Then true
is returned.
Conclusion
To add a ternary conditional expression with Python, we can following the following format:
a if condition else b