python3 manage.py shellPython 3.6.2 (v3.6.2:5fd33b5926, Jul 16 2017, 20:11:06)[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwinType "help", "copyright", "credits" or "license" for more information.(InteractiveConsole)>>> import django>>> django.setup()>>> from polls.models import Blog,Entry,Author>>> Blog.objects.all()>>> b = Blog(name='Beatles Blog', tagline='All the latest Beatles news.')>>> b.save()>>> Blog.objects.all() ]>>>> b.name='New name'>>> Blog.objects.all() ]>>>> b.save()>>> Blog.objects.all() ]>
----