我很善智。我正在尝试设置Django管理员,但我很难过。我已经关注了Django书并多次检查但语法无效(urls.py,第23行)。
from django.conf.urls.defaults import *
from mysite.views import hello, current_datetime, hours_ahead
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^hello/$', hello),
(r'^time/$', current_datetime),
(r'^time/plus/(\d{1,2})/$', hours_ahead),
(r'^admin/', include(admin.site.urls),
)
任何见解都将不胜感激 - 谢谢!
答案 0 :(得分:4)
你错过了第22行的结束语:
(r'^admin/', include(admin.site.urls)),
当您在Python中获得SyntaxError
时,请检查您的括号是否在其前面的行上平衡。