[lang-ref] 変数(再代入可) ( python )

def test_assign_reassignable_variable():
    # x = 1
    x = 1
    assert x == 1

    x = 2
    assert x == 2