Google News
logo
Python - Interview Questions
How Do You Write A Conditional Expression In Python?
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
Advertisement