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()
t.txt:
${hi} , i am here
最後の行を次のように置き換えます。
mytemplate.render(hi = "world")
今、hiだけでなく、あなたが好きなものに匹敵することができます"world"。
hi
"world"