Answers for "how to break all for loop"

3

does break stop all loops

Using break in a nested loop

In a nested loop, a break statement only stops the loop it is placed in.
Therefore, if a break is placed in the inner loop, the outer loop still
continues. However, if the break is placed in the outer loop, all of the 
looping stops.
Posted by: Guest on November-24-2020
1

break all loops

break only stops the loop it is in.
if you want to break out of a while true loop try:
flag = True
while flag:
	for i in range(1000):
    	if i == 10:
        	flag = False
            break
Posted by: Guest on May-15-2021

Python Answers by Framework

Browse Popular Code Answers by Language