IndentationError:unindent与任何外部缩进级别教程

时间:2017-02-02 08:02:49

标签: python django

这是我得到的输出:

This is the output

我在这里说明了如何做到这一点: https://docs.djangoproject.com/en/1.10/intro/tutorial03/

我的代码是:

def index(request):
   latest_question_list = Question.objects.order_by('-pub_date')[:5]
   template = loader.get_template('polls/index.html')
   context = {
    '   latest_question_list': latest_question_list,
   }
   # output = ', '.join([q.question_text for q in latest_question_list])
   return HttpResponse(template.render(context, request))

这是引发的错误:

 File "C:\Users\ab\mysite\polls\views.py", line 9
   context = {
          ^
IndentationError: unindent does not match any outer indentation level

我做错了什么?

1 个答案:

答案 0 :(得分:0)

运行Python时使用-tt选项。如果混合制表符和空格,这将给你一个错误。