How do I create a superuser account in Django admin October 22, 2018 Python 0 Comments Just run following command $ python manage.py migrate $ python manage.py createsuperuser Related Posts How to show hostname & IP address with python programming zendnwar April 13, 2016 The Internet Protocol assigns a 4-byte address to every computer connected to the network. Such .. Some sorting example in paython. zendnwar March 6, 2014 >>> sorted(5, 2, 3, 1, 4,8,9,7) output : 1, 2, 3, 4, 5, 7, 8, 9 list.sort() method : & ..