Use the t prefix for template strings

Template Comment

t"""
{# This is comment #}

""

Template Expression

t"""
{@ x @}
{@ None @}
{@ "string" @}
""

Template If

t"""
{% if a > 0%}
    yes
{% else %}
    no
{% end if %}
""

Template While

t"""
{% while a > 0 %}
    {% if a > 1 %}
        yes
        {@ a -= 1 @}
    {% else %}
        no
    {% end if %}
{% end while %}