Answers for "how to exit a double loop in python"

2

how to exit a double loop in python

for word1 in buf1: 
    find = False 
    for word2 in buf2: 
        ... 
        if res == res1: 
            print "BINGO " + word1 + ":" + word2 
            find = True 
            break             # <-- break here too
    if find: 
        break
Posted by: Guest on September-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language