python create an array from string code example Example: python string to array >>> text = 'a b c' >>> text = text.split(' ') >>> text [ 'a', 'b', 'c' ]