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

Related questions

0 votes
asked Dec 14, 2019 in Python by sharadyadav1986
0 votes
asked Oct 12, 2021 in Python by rajeshsharma
...