0 votes
in Python by
How Do You Write A Conditional Expression In Python?

1 Answer

0 votes
by

We can utilize the following single statement as a conditional expression. default_statment if Condition else another_statement

>>> no_of_days = 366

>>> is_leap_year = "Yes" if no_of_days == 366 else "No"

>>> print(is_leap_year)

Yes

...