Is there a way in python to extract each substring thats inside a string?
For example if I have the string
"Hello there my name is Python"
I want to take out each sub-string (or individual word) from within this string so that I have "Hello", "there" , "my" , "name" , "is"
and "Python"
each taken out of this string?