LoginSignup
0
0

More than 3 years have passed since last update.

python 外部ファイル読みこみ

Posted at

(サンプル ファイル名:urls.py)

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

urlpatterns = [
    path('polls/', include('polls.urls')),
    path('admin/', admin.site.urls),
]

単体関数呼び出し
from ファイル名 import 関数名

複数関数呼び出し
from ファイル名 import 関数名, 関数名

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0