0 votes
in Python by
How Does The Ternary Operator Work In Python?

1 Answer

0 votes
by

The ternary operator is an alternative for the conditional statements. It combines true or false values with a statement that you need to test.

The syntax would look like the one given below.

[onTrue] if [Condition] else [onFalse]

x, y = 35, 75

smaller = x if x < y else y

print(smaller)

Related questions

0 votes
asked Jan 13, 2021 in Python by SakshiSharma
0 votes
asked Jun 28, 2020 in Python by Robindeniel
...