我正在尝试从文件的每一行读取文本文件。有用。但实际上我想为每一行添加一个索引。
我有以下代码:
views.py :
def survey(request):
myFile = open(r'd:\work\Python\ps\psi\questions.txt', 'r')
out = myFile.readlines()
return render_to_response("questions.html", {'f' : out})
questions.html :
{% for line in f %}
#here I would like to add an index, for instance :
# 1.Question1 text
# 2.Question2 text
{{ line }}<br>
{% endfor %}
我尝试使用以下代码使用enumarate(f)
:
{% for index, line in enumerate(f) %}
{{index }}.{{ line }}<br>
{% endfor %}
但是,它不起作用。我收到错误:Could not parse the remainder: '(f)' from 'enumerate(f)'
。
有什么想法吗? 非常感谢。
答案 0 :(得分:3)
你不应该把python代码放在模板中,在Django你可以使用
{{ forloop.counter }}
对于从1开始的索引,或
{{ forloop.counter0 }}
表示基于0的索引。