7 lines
98 B
Python
7 lines
98 B
Python
f = open("book.txt")
|
|
text = f.read()
|
|
sent = text.split(".")
|
|
for s in sent:
|
|
print(s)
|
|
|
|
f.close() |