python program to show diffrence break and continue statement?
Answers
Answered by
1
Answer:
Here is ur ans....
Explanation:
Break statements exist in Python to exit or “break” a for or while conditional loop. When the loop ends, the code picks up from and executes the next line immediately following the loop that was broken. In this example, the loop will break after the count is equal to 2....
Similar questions