You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
385 B

1 month ago
"""
conda activate rag
pip install python-docx
"""
from Util.WordUtil import *
# 使用示例
if __name__ == "__main__":
1 month ago
word_file = r"../Txt/小学数学知识点.docx"
1 month ago
content = read_word_file(word_file)
if content:
# 逐行打印,空行不打印
for line in content.split("\n"):
if line.strip():
print(line)