list("string") # ["s", "t", "r", "i", "n", "g"]
s = "foobar" s = list(s) print(s) <output: ['f', 'o', 'o', 'b', 'a', 'r']>
def split(word): return [char for char in word]