import docx doc = docx.Document('606 如何使布丁凝結的更快.docx') print('段落數量: ', len(doc.paragraphs)) for para in doc.paragraphs: print(para.text) ...
確定! 回上一頁