how to loop through httprequest post variables in python

Viewed 44329

How can you loop through the HttpRequest post variables in Django?

I have

for k,v in request.POST:
     print k,v

which is not working properly.

Thanks!

1 Answers
Related