Skip to content
Advertisement

Python Walrus Operator in While Loops

I’m trying to understand the walrus assignment operator.

Classic while loop breaks when condition is reassigned to False within the loop.

x = True
while x:
    print('hello')
    x = False

Why doesn’t this work using the walrus operator? It ignores the reassignment of x producing an infinite loop.

while x := True:
    print('hello')
    x = False

Advertisement

Answer

You seem to be under the impression that that assignment happens once before the loop is entered, but that isn’t the case. The reassignment happens before the condition is checked, and that happens on every iteration.

x := True will always be true, regardless of any other code, which means the condition will always evaluate to true.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement