In python 3, I have a list where each element of this list is a sentence string, for example
list = ["the dog ate a bone", "the cat is fat"]
How do I split each sentence string into an individual list while keeping everything in the individual list, making it a 2 dimensional list
For example...
list_2 = [["the", "dog", "ate", "a", "bone"], ["the", "cat", "is", "cat"]]