We can check if a certain word/sentence is in a string by doing if "the example word" in string
but I also want to find out the group of words that are after that word that we just found out, for example if
string = "The earth is shaped like Big Chungus"
Suppose I want to find out the series of words that are after "The", then how would I approach doing it?