[lang-ref] ( string_split_to_characters ) ( python )
def test_string_split_to_characters():
# list(s)
characters = list('abcdef')
assert characters == ['a', 'b', 'c', 'd', 'e', 'f']
def test_string_split_to_characters():
# list(s)
characters = list('abcdef')
assert characters == ['a', 'b', 'c', 'd', 'e', 'f']