Computer Science, asked by shagund600, 14 hours ago

Write the syntax for the if..elif..else statement​

Answers

Answered by itzAwesomeSoul10
4

Answer:

The if..else statement evaluates test expression and will execute the body of if only when the test condition is True.

If the condition is False, the body of else is executed. Indentation is used to separate the blocks.

Similar questions