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