QueryDict.values()
Just like the standard dictionary values() method, except this uses the same last-value logic as __getitem__(). For example:
>>> q = QueryDict('a=1&a=2&a=3')
>>> q.values()
['3']
QueryDict.values()
Just like the standard dictionary values() method, except this uses the same last-value logic as __getitem__(). For example:
>>> q = QueryDict('a=1&a=2&a=3')
>>> q.values()
['3']
Please login to continue.