new python django create code example
Example 1: start django project
django-admin startproject <//name of project\\>
Example 2: quick start django
pip install Django
django-admin startproject mysite
cd mysite
python manage.py runserver
django-admin startproject <//name of project\\>
pip install Django
django-admin startproject mysite
cd mysite
python manage.py runserver