【DJANGO学习】基本知识点

__init__.py: An empty file that tells Python that this directory should be considered a Python package.

manage.py: A command-line utility that lets you interact with this Django project in various ways

settings.py: Settings/configuration for this Django project. Django settings will tell you all about how settings work.

urls.py: The URL declarations for this Django project; a "table of contents" of your Django-powered site

你可能感兴趣的:(python,django)