from docx import Document # Word文書を読み込む doc = Document("path/to/your/file.docx") # テキストデータを抽出する fullText = [] for para in doc ...