Python 入門指南

web_demo/urls.py

from django.contrib import admin
from django.urls import include, path

from . import views

urlpatterns = [
    path('', views.now),
    path('encode/', include('encode.urls')),
    path('admin/', admin.site.urls),
]

# 檔名: web_demo/urls.py
# 作者: Kaiching Chang
# 時間: June, 2018

回 Python 入門指南首頁
回 Python 教材首頁
回程式語言教材首頁