Playing with the API (부터 다시)$python manage.py shell => Python shell 불러오기=> 그냥 'python'이라고 치는 대신 shell을 사용하는 이유: DJANGO_SETTINGS_MODULE 환경 변수를 세팅 => mysite/settings.py file에 import 해줌*만약 manage.py를 사용하지 않으면 DJANGO_SETTINGS_MODULE 환경 변수를 mysite.settings에 세팅하면 된다>>> import django>>> django.setup()----------이렇게 세팅해 주면 됨 explore database API in shell*이제부터는 뜬 python shell에 써주면 된다----------------------..