QueryDict.popitem()
[source]
Removes an arbitrary member of the dictionary (since there’s no concept of ordering), and returns a two value tuple containing the key and a list of all values for the key. Raises KeyError
when called on an empty dictionary. For example:
1 2 3 | >>> q = QueryDict( 'a=1&a=2&a=3' , mutable = True ) >>> q.popitem() ( 'a' , [ '1' , '2' , '3' ]) |
Please login to continue.