Head's Up: JavaScript is either turned off or not working properly in your browser. Some parts of this page may not work properly.
from jinja2 import Environment, select_autoescape env = Environment( autoescape=select_autoescape() ) template = env.from_string(""" Hello, {{ name }}! """) output = template.render(name="World") print(output)
Hello, World!