-
必要なソフトウェアのインストール:
- Python: コマンドプロンプトまたはターミナルでPythonスクリプトを実行するために必要です。
- python-docx ライブラリ: ドキュメントファイルを作成および編集するためのPythonライブラリです。pipコマンドを使用してインストールできます。
-
テキストファイルをドキュメントファイルに変換するPythonスクリプトを作成します。以下はサンプルスクリプトです。
from docx import Document
def convert_txt_to_docx(txt_file, docx_file):
# テキストファイルを読み込む
with open(txt_file, 'r', encoding='utf-8') as file:
content = file.read()
# 新しいドキュメントを作成し、テキストを追加する
document = Document()
document.add_paragraph(content)
# ドキュメントファイルを保存する
document.save(docx_file)
# ファイルパスとファイル名を指定して変換を実行する
txt_file = 'input.txt'
docx_file = 'output.docx'
convert_txt_to_docx(txt_file, docx_file)
-
上記のスクリプトをテキストファイルに保存します(例:
txt_to_docx_converter.py
)。 -
コマンドプロンプトまたはターミナルを開き、以下のコマンドを実行します。
python txt_to_docx_converter.py
- 実行すると、指定したテキストファイル(
input.txt
)がドキュメントファイル(output.docx
)に変換されます。