Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
from mako.template import Template stext = "hi" mytemplate = Template(filename='./t.txt') print mytemplate.render()
.txt:
${hi} , i am here
将最后一行替换为:
mytemplate.render(hi = "world")
现在,hi可以等于你喜欢的任何东西,而不仅仅是"world".
hi
"world"