對於尋求將 文本 轉換為 Word 的無縫解決方案的 Python 開發人員, Aspose.Words for Python via .NET 提供了直覺且直接的檔案轉換 API。我們的解決方案允許 Python 開發人員輕鬆地將文件從一種格式轉換為另一種格式,使其成為自動化文件轉換任務不可或缺的工具。
無論您使用 文本、Word 或其他檔案格式, Aspose.Words for Python via .NET 都能涵蓋所有這些格式並確保最高品質的結果。立即測試 Python 程式碼如何與您的 文本 檔案搭配使用。
以下範例示範如何僅使用幾行 Python 程式碼將 文本 轉換為 Word。首先在 Python 專案中包含Aspose.Words命名空間。接下來,指定輸入檔案的路徑並建立一個Document物件來載入 文本 內容。然後,您需要指定 Word 輸出檔案的路徑,並使用 save() 方法將結果儲存為 Word。轉換API將根據指定的檔案副檔名決定輸出檔格式。
pip install aspose-words
複製
import aspose.words as aw
doc = aw.Document("Input.txt")
doc.save("Output.docx")
import aspose.words as aw
doc = aw.Document("Input.txt")
doc.save("Output.docx")
import aspose.words as aw
doc = aw.Document(Input.txt)
for page in range(0, doc.page_count):
extractedPage = doc.extract_pages(page, 1)
extractedPage.save(f"Output_{page + 1}.docx")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.txt")
doc.save("Output.docx")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
shape = builder.insert_image("Input.txt")
shape.get_shape_renderer().save("Output.docx", aw.saving.ImageSaveOptions(aw.SaveFormat.docx))
我們在PyPi存儲庫中託管我們的 Python 請按照有關如何 "Aspose.Words for Python via .NET" 安裝到您的開發人員環境的分步說明進行操作。
這個包與 Python ≥3.5 和 <3.12 兼容。如果您為 Linux 開發軟件,請查看產品文檔中對 gcc 和 libpython 的附加要求。
您可以將文本轉換為許多其他文件格式: