[lang-ref] ( list_max ) ( python )

def test_list_max():
    # max
    items = [30, 40, 80, 20, 90, 10]

    r = max(items)

    assert r == 90