First Commit

This commit is contained in:
2025-07-24 19:48:49 +00:00
commit 7d2a0c92ff
2 changed files with 518 additions and 0 deletions

7
script.py Normal file
View File

@@ -0,0 +1,7 @@
f = open("book.txt")
text = f.read()
sent = text.split(".")
for s in sent:
print(s)
f.close()