import datetime
now = datetime.date.today()
now = str(now)
index = open('/var/www/index.html', 'a')
index.write('<br> $s,' %now)
index.close()
我一直收到错误。
答案 0 :(得分:2)
您需要使用正确的格式:
index.write('<br> %s,' %now)
那是%s
,而不是$s
。
答案 1 :(得分:1)
index.write('<br> {now},'.format(now=now))
.format
比string-formatting
看this