KnowledgeBoat Logo

Computer Science

What is the difference between else clause of if-else and else clause of Python loops?

Python Control Flow

25 Likes

Answer

The else clause of an if-else statement is executed when the condition of the if statement results into false. The else clause of a loop is executed when the loop is terminating normally i.e., when its test condition has become false for a while loop or when the for loop has executed for the last value in sequence.

Answered By

12 Likes


Related Questions