Problem
Write a Python program which reads sentences from a text file (one sentence per line). The program breaks each sentence up into tokens and prints them out, one per line.
A token is a semantic unit, consisting of a sequence of characters or a single punctuation character. In this project, you can assume that a punctuation character is a separate token if it stands alone, appears directly before a word, or directly after a word.