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