explain the working of break, continue,pass statement through suitable codes and appropriate outputs (python)
Answers
Answered by
0
There are two types of loop supported in Python "for" and "while". ... The block of code is executed multiple times inside the loop until the condition fails. The loop control statements break the flow of execution and terminate/skip the iteration as per our need.
Similar questions