The easiest way is to output the variable delimiter ({{) by using a variable expression:
{{ '{{' }}
Alternatives (used when you have to escape too much) are raw (verbatim since 1.12) blocks:
{% raw %}
{% for item in seq %}
- {{ item }}
{% endfor %}
{% endraw %}
Actually, it's quite well documented.