QueryDict.pop(key) [source]
Returns a list of values for the given key and removes them from the dictionary. Raises KeyError if the key does not exist. For example:
>>> q = QueryDict('a=1&a=2&a=3', mutable=True)
>>> q.pop('a')
['1', '2', '3']
QueryDict.pop(key) [source]
Returns a list of values for the given key and removes them from the dictionary. Raises KeyError if the key does not exist. For example:
>>> q = QueryDict('a=1&a=2&a=3', mutable=True)
>>> q.pop('a')
['1', '2', '3']
Please login to continue.