0

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>')
4

2 に答える 2

1

出力ファイルに書き込まれる文字列にページタイトルを連結する必要があります

output_file.write('<html><head><title>' + pagetitle + '</title></head>')
于 2013-09-20T07:48:07.533 に答える
0

これを試して:

def paragraph_function(filename, pagetitle, textbody):
  output_file = open(filename,'w+')
  data = '<html><head><title>'+pagetitle+'</title></head>'
  output_file.write(data)


pagetitle= 'page'
filename= 'out'
textbody = ''
paragraph_function(filename, pagetitle, textbody)
于 2013-09-20T07:54:39.107 に答える