whats the syntax of "if statement" in Python
Answers
Answered by
0
Answer:
Syntax of if...else
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.
Explanation:
Similar questions