我有一个文本文件,我想在我的 cgi 脚本中读取它,每行之间会出现一个新行,但它只是作为一堵巨大的文本墙出现。我不知道在哪里放置'\ n'。我尝试了多个位置,但没有一个工作。这是我的代码。
cgitb.enable()
form = cgi.FieldStorage()
keyword = form.getvalue('keyword')
f = open('%s.txt' %keyword, 'r')
print 'Content-type: text/html\r\n\r'
print '<html>'
print '<title> keyword + "tweets" </title>'
print f.readlines()
print '</html>'
f.close()