convert string array to list python code example Example: string to list python s = 'hello' l = list(s) print(l) # prints ['h', 'e', 'l', 'l', 'o']