KnowledgeBoat Logo
|

Computer Science

The continue statement skips the current iteration in a loop and causes the next iteration of loop to take place.

Python Control Flow

1 Like

Answer

True

Reason — The continue statement in Python is used within loops to skip the rest of the code inside the current iteration and immediately proceed to the next iteration of the loop.

Answered By

3 Likes


Related Questions