KnowledgeBoat Logo

Computer Science

In a nested loop, a break statement terminates all the nested loops in one go.

Python Funda

2 Likes

Answer

False

Reason — In nested loops, a break statement will terminate the very loop it appears in.

Answered By

3 Likes


Related Questions