How to split a string into a list of characters?

>>> list("foobar")
['f', 'o', 'o', 'b', 'a', 'r']

Use the list constructor.

Leave a Comment