Name the decision making statement used in python.
Answers
Answered by
1
Answer:
Explanation:
In Python, we have an elif keyword to chain multiple conditions one after another. With elif ladder, we can make complex decision-making statements. The elif statement helps you to check multiple expressions and it executes the code as soon as one of the conditions evaluates to True
Answered by
0
Answer:
In Python, we have an elif keyword to chain multiple conditions one after another. With elif ladder, we can make complex decision-making statements. The elif statement helps you to check multiple expressions and it executes the code as soon as one of the conditions evaluates to True
Similar questions