Python写入文件 - 新行

时间:2016-01-03 19:26:38

标签: python file newline

我正在尝试编写python代码,我写入文件和每个f.write。我想让它写一个新的行。我以为\n会这样做。但是现在一切都写在一条线上。我究竟做错了什么 ?

代码(本地时间总和是变量)

f = open('/var/www/html/index.html','w')
f.write("<font size='35px'>"+sum+"</font>")
f.write('\n'+localtime)
f.write('\n Sist oppdatert '+value)
f.close()

1 个答案:

答案 0 :(得分:2)

对html换行符使用换行符<br/>

f = open('/var/www/html/index.html','w')
f.write("<font size='35px'>"+sum+"</font>")
f.write('<br/>'+localtime)
f.write('<br/> Sist oppdatert '+value)
f.close()