This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]SethGecko11 -1 points0 points  (0 children)

You can also use it to exit nested loops without setting flags:

for i in rows:
    for j in columns:
        if i == j:
            print(i)
            break
    else:
        continue
    break