Hi somen,
Just Open xampp control panel and run apache and mySQL sever.
then go to localhost/phpmyadmin in browser and there create a database as u do for php.
then in search DATABASE in settings.py file (which would be created when u create a project in django) do the below changes -
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'webapp', --> name of db which u created b4
'USER': 'root', --> user is root
'PASSWORD': '', ----> it is pasword less
'HOST': '127.0.0.1', ---> this is for local host
'PORT': '3306', ----> this port number u will get from xampp control panel where u start MYSQL
}
Hope it will help... Njoy