KnowledgeBoat Logo

Computer Science

How is break statement different from continue?

Python Control Flow

8 Likes

Answer

When the break statement gets executed, it terminates its loop completely and control reaches to the statement immediately following the loop. The continue statement terminates only the current iteration of the loop by skipping rest of the statements in the body of the loop.

Answered By

5 Likes


Related Questions