1
from mako.template import Template

stext = "hi"

mytemplate = Template(filename='./t.txt')
print mytemplate.render()

.txt:

${hi}  , i am here
4

1 回答 1

2

将最后一行替换为:

mytemplate.render(hi = "world")

现在,hi可以等于你喜欢的任何东西,而不仅仅是"world".

于 2011-05-22T00:36:47.930 回答