[lang-ref] ( reassignable_variable ) ( python )

def test_reassignable_variable():
    x = 1
    assert x == 1

    x = 2
    assert x == 2