The Django docs say at http://docs.djangoproject.com/en/dev/ref/request-response/#django.http.QueryDict.iteritems thatQueryDict.iteritems() uses the same last-value
QueryDict.iteritems()
I believe QueryDict.urlencode achieves your desired outcome if all you want to do is print out the QueryDict then just
print request.GET.urlencode()
should do the trick. Let me know if you were trying to do something else and I'll try to help!