I can split a sentence into individual words like so:
string = 'This is a string, with words!'
string.split(" ")
['This', 'is', 'a', 'string,', 'with', 'words!']
But I don't know how to split a word into letters:
word = "word"
word.split("")
Throws me an error. Ideally I want it to return ['w','o','r','d'] thats why the split argument is "".