f = open("book.txt") text = f.read() sent = text.split(".") for s in sent: print(s) f.close()