[lang-ref] ( join_strings ) ( python )

def test_join_strings():
    # d.join(elems)
    elems = ['A', 'B', 'C']
    text = ','.join(elems)
    assert text == 'A,B,C'