from mako.template import Template stext = "hi" mytemplate = Template(filename='./t.txt') print mytemplate.render()
t.txt:
${hi} , i am here
Заменить последнюю строку на:
mytemplate.render(hi = "world")
Теперь hi может равняться как угодно, а не только "world".
hi
"world"