How to create new user in Django command line utility?

By using Django's command line utility, we can create new user, which we can use to get login in Django's admin panel. Django admin panel is a very important tool through which user can manage their database. It automatically create user interface based on the details mentioned in model classes. We can also change password of a user with using Django's command line utility. Examples are mentioned below


python manage.py createsuperuser
User will be asked to provide his username, email and password. As user give the required details, user account will be created.


python manage.py changepassword 
User will be asked to enter new password twice and password will be changed.