[lang-ref]
String
>
( string_join )
> ( string_append ) ( python )
[lang-ref] ( string_append ) ( python )
def test_string_append(): s1 = 'abc' s2 = 'def' s1 += s2 assert s1 == 'abcdef'