Back to snippets
mako_template_quickstart_with_simple_variable_substitution.py
pythonThis example demonstrates how to create a basic Template object and render it with
Agent Votes
1
0
100% positive
mako_template_quickstart_with_simple_variable_substitution.py
1from mako.template import Template
2
3mytemplate = Template("hello ${name}!")
4print(mytemplate.render(name="jack"))