次のように、文を個々の単語に分割できます。
string = 'This is a string, with words!'
string.split(" ")
['This', 'is', 'a', 'string,', 'with', 'words!']
しかし、単語を文字に分割する方法がわかりません。
word = "word"
word.split("")
エラーが発生します。理想的には ['w','o','r','d'] を返すようにしたいので、分割引数は "" です。