>>> text = 'a b c' >>> text = text.split(' ') >>> text [ 'a', 'b', 'c' ]
str = "MillieB11" arr = list(str) print(arr) #['M', 'i', 'l', 'l', 'i', 'e', 'B', '1', '1']