how to put all characters of a python sting, into an array code example
Example: python string to char array
>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']
>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']