gpt4 book ai didi

python - Django 无效语法错误

转载 作者:太空宇宙 更新时间:2023-11-04 10:51:26 25 4
gpt4 key购买 nike

我脑洞大开。我正在尝试设置 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),
)

如有任何见解,我们将不胜感激 - 谢谢!

最佳答案

您在第 22 行缺少右括号:

(r'^admin/', include(admin.site.urls)), 

当您在 Python 中遇到 SyntaxError 时,请检查您的括号在它前面的行中是否平衡。

关于python - Django 无效语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13565099/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com