tokenize

operating over strings, python

How to define a function that takes a string (sentence) and inserts an extra space after a period if the period is directly followed by a letter. sent = "This is a test.Start testing!" def normal(sent): list_of_words = sent.split() ... This should print out "This is a test. Start testing!" I suppose I should use split()...