HTML ファイルに文字列を書き込もうとすると、3 行目の「pagetitle」で構文エラーが発生します。どうすればこれを適切にエクスポートできますか? pythonが初めてで、メモが役に立ちません。
Python で書き、HTML にエクスポートします。
def paragraph_function(filename, pagetitle, textbody):
output_file = file(filename)
output_file.write('<html><head><title>'pagetitle'</title></head>')