Les caractères divisés pour lister Python

>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']
Sleepy Sardine