немного доработок

This commit is contained in:
danamir
2018-03-19 11:34:04 +03:00
parent 7519c97115
commit fce5c47202
4 changed files with 16 additions and 3 deletions

8
service/test1.py Normal file
View File

@@ -0,0 +1,8 @@
from docx import Document
doc = Document('test.docx')
full_text = []
for i in doc.paragraphs:
full_text.append(i.text)
print(full_text)