InterviewSolution
Saved Bookmarks
| 1. |
Ternary Operator in Python |
|
Answer» The ternary operator is used as an alternative to the if-else conditional statements and provides a way to write a short crisp one-liner statement. The syntax is as follows: <expression 1> if <condition> else <expression 2> f = 2s = 2 # if the sum of f and s is greater than 0 the sum # is printed, else 0 is printed print(f + s if (f + s > 0) else 0) Output: 4 |
|