Python में break और continue का अंतर क्या है?
What is the difference between break and continue in Python
A
break skips next iteration, continue exits loop
B
break exits loop, continue skips current iteration
C
both do same work
D
both only work in functions
Explanation
Correct Answer: B) break exits loop, continue skips current iteration