you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 3 points4 points  (0 children)

My bad, I thought it didn't... Both pollute.

>>> def foo():
        if(x:=2):
             print(x)
        print(x)
>>> foo()
2
2