Django official tutorial questions

There are differences between personal manipulation and tutorials.
The tutorial documentation is linked here:
EN: Writing your first Django app, part 2 | Django documentation | Django (djangoproject.com)
I use vscode to study Django.

one:
Official course:
…> py manage.py migrate
Operations to perform:
Apply all migrations: admin, auth, contenttypes, polls, sessions
Running migrations:
Rendering model states… DONE
Applying polls.0001_initial… OK
Individual operation:
…> py manage.py migrate
Operations to perform:
Apply all migrations: admin, auth, contenttypes, polls, sessions
Running migrations:
Applying polls.0001_initial… OK

two:
Official course:
…> py manage.py shell
>>>
Individual operation:
…> py manage.py shell
Python 3.9.12 (tags/v3.9.12:b28265d, Mar 23 2022, 23:52:46) [MSC v.1929 64 bit (AMD64)]
Type ‘copyright’, ‘credits’ or ‘license’ for more information
IPython 8.11.0 – An enhanced Interactive Python. Type ‘?’ for help.

            In [1]:

Why?Is there anything I can do wrong?

Nope, nothing wrong. Somehow, you’re configured to use the ipython shell instead of the default python shell. It will work just as well for you as the regular shell. (In fact, I have my system configured to use that shell.)