Since a string supports iteration but not indexing, I would like to convert a string into a list of chars. I have \"abc\" and I want [\'a\', \'b\', \'c\']
\"abc\"
[\'a\', \'b\', \'c\']