[lang-ref] ( param_with_keyword ) ( python )

def test_param_with_keyword():
    # func01(a, b=2)
    def func01(a, b):
        return a + b

    r = func01(a=3, b=5)
    assert r == 8

    r = func01(b=5, a=3) # argument order doesn’t matter 
    assert r == 8