This is my dictionary
<QueryDict: {u'karnataka': [u'bangalore', u'tumkur']}>
I want to remove the QueryDict and i want as
{u'karnataka': [u'bangalore', u'tumkur']}
This is my dictionary
<QueryDict: {u'karnataka': [u'bangalore', u'tumkur']}>
I want to remove the QueryDict and i want as
{u'karnataka': [u'bangalore', u'tumkur']}
from django.utils import six
fields = dict(six.iterlists(request.POST))
print fields
I sorted out this works perfectly