def split_sentences(text): """ Returns a list of the sentences in the text that is passed in. """ return sent_tokenize(text)