Ternary Operator in Python
Ternary operators are also known as conditional expressions are operators that evaluate something based on a condition being true or false. It was added to Python in version 2.5.
It simply allows testing a condition in a single line replacing the multiline if-else making the code compact.
Syntax :
[on_true] if [expression] else [on_false]
- Simple Method to use ternary operator:
- Python
Output:
10
- Direct Method by using tuples, Dictionary, and lambda
- Python
Output:
10 10 10
Time Complexity: O(1)
Auxiliary Space: O(1)
- Ternary operator can be written as nested if-else:
- Python
Time Complexity: O(1)
Auxiliary Space: O(1)
The above approach can be written as:
- Python
Output:
b is greater than a
Time Complexity: O(1)
Auxiliary Space: O(1)
- To use print function in ternary operator be like:-
Example: Find the Larger number among 2 using ternary operator in python3
- Python3
Output:
7 is Greater
Time Complexity: O(1)
Auxiliary Space: O(1)