Python:并非在字符串格式化过程中转换所有参数

时间:2014-03-21 16:40:44

标签: python html string raspberry-pi

import datetime

now = datetime.date.today()
now = str(now)
index = open('/var/www/index.html', 'a')
index.write('<br> $s,' %now)
index.close()

我一直收到错误。

2 个答案:

答案 0 :(得分:2)

您需要使用正确的格式:

index.write('<br> %s,' %now)

那是%s,而不是$s

答案 1 :(得分:1)

index.write('<br> {now},'.format(now=now))

.formatstring-formattingthis

要好得多