4 lines
201 B
Text
4 lines
201 B
Text
|
|
print(Template("""{% for lang in ["Jinja", "Python", "Swift", "Nim"] %}
|
||
|
|
{{ loop.index }}) {{ lang }}{{ loop.last and "." or "," }}
|
||
|
|
{%- endfor %}""").render())
|